|
|
{{__('Référence')}}
@if ($sortColumn == "libelle" && $sortDirection == 'ASC')
@elseif($sortColumn == "libelle" && $sortDirection == 'DESC')
@else
@endif
|
{{__('Libellé')}}
@if ($sortColumn == "libelle" && $sortDirection == 'ASC')
@elseif($sortColumn == "libelle" && $sortDirection == 'DESC')
@else
@endif
|
{{__('Code barre')}}
@if ($sortColumn == "libelle" && $sortDirection == 'ASC')
@elseif($sortColumn == "libelle" && $sortDirection == 'DESC')
@else
@endif
|
{{__('Prix de vente')}}
@if ($sortColumn == "libelle" && $sortDirection == 'ASC')
@elseif($sortColumn == "libelle" && $sortDirection == 'DESC')
@else
@endif
|
{{__('Prix d\'achat')}}
@if ($sortColumn == "libelle" && $sortDirection == 'ASC')
@elseif($sortColumn == "libelle" && $sortDirection == 'DESC')
@else
@endif
|
@forelse($articles as $article)
@can('articles_edit')
edit
@endcan
|
@can('articles_delete')
@endcan
|
{{ $article->reference }} |
{{ $article->libelle }} |
{{ $article->code_barre }} |
{{ $article->prix_de_vente }} |
{{ $article->prix_achat }} |
@empty
{{ __('No results found.') }} |
@endforelse
@if(!empty($term))
{{ $articles->appends(['s' => $term])->links() }}
@else
{{ $articles->links() }}
@endif
{{__('Showing')}} {{ $articles->firstItem() }} - {{ $articles->lastItem() }} / {{ $articles->total() }} ({{__('page')}} {{ $articles->currentPage() }} )