@extends('layouts.app') @section('content')
@if (session('error')) @endif| Produit | Catégorie | Prix | Quantité | Date d'expiration | Créé par | Actions | |
|---|---|---|---|---|---|---|---|
| {{ $product->category->name ?? '-' }} | {{ number_format($product->price, 0, ',', ' ') }} FCFA | {{ $product->quantity }} | {{ $product->date_expiration ?? '-' }} | {{ $product->user ? ($product->user->nom . ' ' . $product->user->prenom) : '-' }} |
Aucun produit expiré pour le magasin {{ $magasinName }}
@endif