@extends('site.templates.voyage.layout')
@section('content')
@foreach($sections as $section)
@if($editorMode ?? false)
@includeIf('site.templates.voyage.sections.' . $section['section_type'], ['section' => $section])
@else
@includeIf('site.templates.voyage.sections.' . $section['section_type'], ['section' => $section])
@endif
@endforeach
@endsection