@foreach ($menus as $menu) @php $menu = (object)$menu; @endphp @if(!empty($menu->home))
{{$menu->title}}
@php $items = !empty($menu->items) ? (object)$menu->items : (object)[]; $theme = !empty($menu->theme) ? $menu->theme : 'cyan'; @endphp
@foreach ($items as $item) @php $item = (object) $item; $visible = !empty($item->home) ? $item->home : 'visibile'; @endphp @if($visible === 'visibile') @endif @endforeach
@endif @endforeach