{{ $page->meta_title }}
@push('headerScripts')
@if (isset($domain->header_scripts))
{!! $domain->header_scripts !!}
@endif
@endpush
home
@push('bodyScripts')
@if (isset($domain->body_scripts))
{!! $domain->body_scripts !!}
@endif
@endpush
@include('partials.front._header')
@foreach ($page->sections as $section)
@php
$viewName = 'front.sections.' . $section->sectionType->type;
@endphp
@if (View::exists($viewName))
@include($viewName)
@endif
@endforeach
@include('partials.front._footer')