|
|
|
{{__('Réference')}}
@if ($sortColumn == "reference" && $sortDirection == 'ASC')
@elseif($sortColumn == "reference" && $sortDirection == 'DESC')
@else
@endif
|
{{__('Désignation')}}
@if ($sortColumn == "designation" && $sortDirection == 'ASC')
@elseif($sortColumn == "designation" && $sortDirection == 'DESC')
@else
@endif
|
{{__('Tel')}}
@if ($sortColumn == "tel" && $sortDirection == 'ASC')
@elseif($sortColumn == "tel" && $sortDirection == 'DESC')
@else
@endif
|
{{__('Adresse')}}
@if ($sortColumn == "adresse" && $sortDirection == 'ASC')
@elseif($sortColumn == "adresse" && $sortDirection == 'DESC')
@else
@endif
|
@forelse($clients as $client)
@can('clients_edit')
edit
@endcan
|
@can('clients_delete')
@endcan
|
@can('client_delete')
@endcan
|
{{ $client->reference }} |
{{ $client->designation }} |
{{ $client->tel }} |
{{ $client->adresse }} |
@empty
{{__('No results found.')}} |
@endforelse
@if(!empty($term))
{{ $clients->appends(['s' => $term])->links() }}
@else
@endif
{{__('Showing')}} {{ $clients->firstItem() }} - {{ $clients->lastItem() }} / {{ $clients->total() }} ({{__('page')}} {{ $clients->currentPage() }} )
{{ $clients->links() }}