| Produit | Catégorie | Type | Prix unitaire | Quantité | Valeur totale |
|---|---|---|---|---|---|
| {{ $product->name }} | {{ optional($product->category)->name ?? '-' }} | {{ $product->type ?? '-' }} | {{ number_format($product->price ?? 0, 0, ' ', ' ') }} FCFA | {{ $product->quantity ?? 0 }} | {{ number_format(($product->price ?? 0) * ($product->quantity ?? 0), 0, ' ', ' ') }} FCFA |
| Aucun produit trouvé | |||||
• Magasin : {{ $magasin->name ?? '-' }}
• Nombre total de produits différents : {{ $products->count() }}
• Quantité totale en stock : {{ $totalQuantity }} unités
• Valeur totale du stock : {{ number_format($totalValue, 0, ' ', ' ') }} FCFA
@if($outOfStock->count() > 0)• Produits en rupture de stock : {{ $outOfStock->count() }}
@endif @if($lowStock->count() > 0)• Produits en stock faible (≤ 5) : {{ $lowStock->count() }}
@endif