@can('edit_client') @endcan
@if ($customers->count() > 0)
@foreach ($customers as $key => $customer) @endforeach
# Entreprise Pseudo Nom complet Tél Adresse Actions
{{ $key + 1 }} {{ $customer->company ?? 'N/A' }} {{ $customer->pseudo ?? 'N/A' }} {{ $customer->fullname }} {{ $customer->phone }} {{ $customer->address ?? 'N/A' }} @can('edit_client') @endcan @can('show_client') @endcan @can('delete_client') @endcan
@else
Aucune donnée disponible.
@endif