@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