{{-- Render Header Template --}} @if($page->headerTemplate) @endif {{-- Render Page Sections --}}
{{-- Legacy sections (if exists) --}} @if($page->sections && count($page->sections) > 0)
@foreach($page->sections as $section) @endforeach
@endif {{-- New template-based sections --}} @if($page->sections_data && count($page->sections_data) > 0)
{!! $renderSections() !!}
@endif {{-- Fallback to content field if no sections --}} @if((!$page->sections || count($page->sections) === 0) && (!$page->sections_data || count($page->sections_data) === 0))
{!! $page->content !!}
@endif
{{-- Render Footer Template --}} @if($page->footerTemplate) @endif