@foreach ($menu as $item) @if ($item['visible'] === 1) @if(isset($item['children']) && count($item['children']) > 0)
  • {{ $item['name'] }}
      @foreach ($item['children'] as $child)
    • {{ $child['name'] }}
    • @endforeach
  • @else
  • {{ $item['name'] }}
  • @endif @endif @endforeach
@yield('breadcrump')