@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