@extends('theme.layout.layout-theme') @section('page-title') @lang('view.home') @endsection @section('content') @php $homepage_containers = theme_setting_containers('homepage'); // dd($homepage_containers); @endphp
@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
@endsection