@if($customers->where('active',1)->count() > 0)
Nom |
Projets |
|
@foreach($customers->where('active',1) as $customer)
@can('voir une fiche client')
{{ $customer->name }}
@else
{{ $customer->name }}
@endcan
|
{{ $customer->projects_count }} |
@can('éditer une fiche client')
@endcan
|
@endforeach
@else
Aucun client actif n'est enregistré pour l'instant.
@endif
@if($customers->where('active',0)->count() > 0)
Nom |
Projets |
|
@foreach($customers->where('active',0) as $customer)
@can('voir une fiche client')
{{ $customer->name }}
@else
{{ $customer->name }}
@endcan
|
{{ $customer->projects_count }} |
@can('éditer une fiche client')
@endcan
|
@endforeach
@else
Aucun client n'est archivé pour l'instant.
@endif