@foreach ($menu as $item) @if ($item['type'] === 'link') {{ $item['label'] }} @elseif ($item['type'] === 'dropdown')
@foreach ($item['items'] as $sub) {{ $sub['label'] }} @endforeach
@endif @endforeach