|
|
{{__('Libellé')}}
@if ($sortColumn == "libelle" && $sortDirection == 'ASC')
@elseif($sortColumn == "libelle" && $sortDirection == 'DESC')
@else
@endif
|
{{__('Type')}}
@if ($sortColumn == "type" && $sortDirection == 'ASC')
@elseif($sortColumn == "type" && $sortDirection == 'DESC')
@else
@endif
|
@forelse($boxs as $box)
@can('boxs_edit')
edit
@endcan
|
@can('boxs_delete')
@endcan
|
{{ $box->libelle }} |
@if ($box->type && App\Helpers\ArticleData::TYPE_RACES[$box->type])
{{ App\Helpers\ArticleData::TYPE_RACES[$box->type] }}
@endif
|
@empty
{{ __('No results found.') }} |
@endforelse
@if(!empty($term))
{{ $boxs->appends(['s' => $term])->links() }}
@else
{{ $boxs->links() }}
@endif
{{__('Showing')}} {{ $boxs->firstItem() }} - {{ $boxs->lastItem() }} / {{ $boxs->total() }} ({{__('page')}} {{ $boxs->currentPage() }} )