@if ($customers->count() > 0) @foreach ($customers as $key => $customer) @endforeach @else @endif
# Nom contact Email Adresse Ville Pays Actions
{{ $key + 1 }} {{ $customer->fullname }} {{ $customer->contact ?? 'N/A' }} {{ $customer->email ?? 'N/A' }} {{ $customer->address ?? 'N/A' }} {{ $customer->city ?? 'N/A' }} {{ $customer->country ?? 'N/A' }} @can('edit_client') @endcan @can('show_client') @endcan @can('delete_client') @endcan
Aucun élément trouvé.