@extends('layouts.app') @section('title', $produit->nom) @section('breadcrumb', 'Produits / '.$produit->nom) @push('head') @endpush @section('content')
| Emplacement | Quantité |
|---|---|
| {{ $e->label }} | {{ number_format($e->pivot->qte ?? 0, 3, ',', ' ') }} |
| Aucun emplacement associé à ce produit. | |
Aucun achat enregistré pour ce produit.
| N° Document | Type | Fournisseur | Date | Qté | Prix HT |
|---|---|---|---|---|---|
| {{ $d->numero }} | {{ $d->type }} | {{ $d->fournisseur?->nom ?? '—' }} | {{ $d->date?->format('d/m/Y') ?? '—' }} | {{ $lg ? number_format($lg->qte, 3, ',', ' ') : '—' }} | {{ $lg ? number_format($lg->prix_unit_ht, 3, ',', ' ') : '—' }} |
Aucune vente enregistrée pour ce produit.
| N° Document | Type | Client | Date | Qté | Prix HT |
|---|---|---|---|---|---|
| {{ $d->numero }} | {{ $d->type }} | {{ $d->client?->nom ?? '—' }} | {{ $d->date?->format('d/m/Y') ?? '—' }} | {{ $lg ? number_format($lg->qte, 3, ',', ' ') : '—' }} | {{ $lg ? number_format($lg->prix_unit_ht, 3, ',', ' ') : '—' }} |