@foreach ($menu_header as $v) @if ($v['id'] == 6 && !empty($products['list']))
  • {{ $v['name'] ?? '' }}

      {{ $v['name'] ?? '' }}

        @foreach ($products['list'] as $k => $p)
      • {{ $p['name'] ?? '' }}
      • @endforeach
      @if (!empty($products['list'])) @foreach ($products['list'] as $k => $p)
      @if (!empty($p['sub'])) @foreach ($p['sub'] as $s)
      {{ $s['name'] ?? '' }} {{ $s['name'] ?? '' }}
      @endforeach @else
      {{ __('frontend::lang.error.no_data.products') }}
      @endif
      @endforeach @else
      {{ __('frontend::lang.error.no_data.products') }}
      @endif
  • @else
  • {{ $v['name'] ?? '' }}
  • @endif @endforeach