{{ config('app.name', 'Laravel') }}
    @foreach($TAB_CATEGORIES_PAGES as $key => $CATEGORIES_PAGES) @if ($CATEGORIES_PAGES->count() == 1)
  • {{ $key }}
  • @elseif($CATEGORIES_PAGES->count() > 1)
  • {{ $key }}
      @foreach($CATEGORIES_PAGES as $PAGE)
    • {{ $PAGE->nom }}
    • @endforeach
  • @endIf @endforeach
Cinemas
    @if ($listCinema->count() == 1) @foreach ($listCinema->first() as $cinema) @if ($cinema->canAcceesCinema())
  • {{ $cinema->nom }}
  • @endif @endforeach @else @foreach($listCinema as $nomClient => $client)
  • {{ $nomClient }}
      @foreach ($client as $cinema) @if ($cinema->canAcceesCinema())
    • {{ $cinema->nom }}
    • @endif @endforeach
  • @endforeach @endif