@forelse ($homepage_containers as $container)
@foreach ($container['sections'] as $section)
@if ($section['section'])
@php
$section_blade_path = 'theme.components.homepage.' . $section['section'];
@endphp
@if (view()->exists($section_blade_path) && array_key_exists('display', $section->data) && $section->data['display'] == true)
@include($section_blade_path, ['section' => $section, 'data' => $section->data])
@endif
@else
{!! $section->widget_view !!}
@endif
@endforeach
@empty
@endforelse