@extends('layouts.app') @section('content')
Bienvenue sur {{ config('app.name', 'Laravel') }}
Veuillez selectionner un cinema :
@foreach ($listCinema as $client) @foreach ($client as $cinema) @if ($cinema->canAcceesCinema()) {{ $cinema->nom }} @endif @endforeach @endforeach
@endsection