|
|
{{__('Code tarif')}}
@if ($sortColumn == "code_tarif" && $sortDirection == 'ASC')
@elseif($sortColumn == "code_tarif" && $sortDirection == 'DESC')
@else
@endif
|
{{__('type')}}
@if ($sortColumn == "type" && $sortDirection == 'ASC')
@elseif($sortColumn == "type" && $sortDirection == 'DESC')
@else
@endif
|
{{__('Remise')}} (%)
@if ($sortColumn == "remise" && $sortDirection == 'ASC')
@elseif($sortColumn == "remise" && $sortDirection == 'DESC')
@else
@endif
|
{{__('Prix brut')}}
@if ($sortColumn == "prix_brut" && $sortDirection == 'ASC')
@elseif($sortColumn == "prix_brut" && $sortDirection == 'DESC')
@else
@endif
|
{{__('Prix Net')}}
@if ($sortColumn == "prix_net" && $sortDirection == 'ASC')
@elseif($sortColumn == "prix_net" && $sortDirection == 'DESC')
@else
@endif
|
{{__('Nbr')}}
@if ($sortColumn == "nbr" && $sortDirection == 'ASC')
@elseif($sortColumn == "nbr" && $sortDirection == 'DESC')
@else
@endif
|
@forelse($tarifs as $tarif)
@can('tarifs_edit')
edit
@endcan
|
@can('tarifs_delete')
@endcan
|
{{ $tarif->code_tarif }} |
@if ($tarif->type AND isset(App\Helpers\ArticleData::TYPE_RACES[$tarif->type]))
{{ App\Helpers\ArticleData::TYPE_RACES[$tarif->type] }}
@endif
|
{{ $tarif->remise }} |
{{ $tarif->prix_brut }} |
{{ $tarif->prix_net }} |
{{ $tarif->nbr }} |
@empty
{{ __('No results found.') }} |
@endforelse
@if(!empty($term))
{{ $tarifs->appends(['s' => $term])->links() }}
@else
{{ $tarifs->links() }}
@endif
{{__('Showing')}} {{ $tarifs->firstItem() }} - {{ $tarifs->lastItem() }} / {{ $tarifs->total() }} ({{__('page')}} {{ $tarifs->currentPage() }} )