@extends('layouts.app') @section('title','Produits') @section('page-title','Catalogue produits') @section('topbar-actions') @if(auth()->user()->isAdmin()) Nouveau produit @endif @endsection @section('content')
| Référence | Nom | Catégorie | Fournisseur | P. Achat | P. Vente | Marge | Stock | Seuil | Actions |
|---|---|---|---|---|---|---|---|---|---|
| {{ $p->reference }} | {{ $p->name }} | {{ $p->category }} | {{ $p->supplier ?? '—' }} | {{ number_format($p->purchase_price,0,',',' ') }} | {{ number_format($p->selling_price,0,',',' ') }} | {{ number_format($p->margin,1) }}% | @if($p->isCritical()) {{ $p->stock }} ● @elseif($p->isLowStock()) {{ $p->stock }} ● @else {{ $p->stock }} @endif | {{ $p->alert_stock }} | |
Aucun produitAjoutez votre premier produit au catalogue. | |||||||||