@php $menuItems = $menuItems ?? []; $website = $website ?? null; @endphp @if($website && $website->logo) @else {{ $website ? $website->name : 'Your Business' }} @endif @forelse($menuItems as $item) @if(isset($item['children']) && count($item['children']) > 0) {{ $item['label'] }} @foreach($item['children'] as $child) {{ $child['label'] }} @endforeach @else {{ $item['label'] }} @endif @empty Home About Services Contact @endforelse @if(isset($ctaButton)) {{ $ctaButton }} @endif