|
|
|
{{__('Designation')}}
@if ($sortColumn == "designation" && $sortDirection == 'ASC')
@elseif($sortColumn == "designation" && $sortDirection == 'DESC')
@else
@endif
|
@forelse($clients as $client)
@can('client_show')
remove_red_eye
@endcan
|
@can('client_edit')
edit
@endcan
|
@can('client_delete')
@endcan
|
{{ $client->designation }} |
@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() }}