| {{ $product->code }} |
{{ $product->name }} |
{{ $product->category->name ?? 'Non classé' }}
|
{{ $product->unit }} |
@if($product->status == 'actif')
Actif
@elseif($product->status == 'inactif')
Inactif
@else
Rupture
@endif
|
@can('voir_article')
@endcan
@can('modifier_article')
@endcan
@can('supprimer_article')
@endcan
|
@endforeach
@else