@if ($type === 'dropdown')
@foreach ($item['children'] ?? [] as $child)
{{ $child['label'] }}
@endforeach
@elseif ($type === 'mega')
@foreach ($item['sections'] ?? [] as $section)
{{ $section['title'] }}
@foreach ($section['links'] ?? [] as $link)
{{ $link['label'] }}
@endforeach
@endforeach
@foreach ($item['featured'] ?? [] as $featured)
{{ $featured['title'] }}
@endforeach
@endif
@endif