@if ($clients->count() > 0)
# |
Nom |
Adresse |
Tél |
Ville |
Email |
Action |
@foreach ($clients as $key => $client)
{{ $key + 1 }} |
{{ $client->name }} |
{{ $client->address }} |
{{ $client->phone }} |
{{ $client->ville ?? 'N/A' }} |
{{ $client->email ?? 'N/A' }} |
|
@endforeach
@else
Aucun élément trouvé.
@endif