Enregistrer les produits
@if (session()->has('message'))
{{ session('message') }}
@endif
@if (session()->has('info'))
{{ session('info') }}
@endif
@if ($showGasForm)
@endif
@if ($showAccessoryForm)
@endif
@if (count($products ?? []) > 0)
| Type |
Détail |
Quantité entrante |
Quantité sortante |
Actions |
@foreach ($products as $product)
| {{ $product['type'] }} |
{{ $product['detail'] }} |
{{ $product['quantity'] }} |
{{ $product['outgoingQuantity'] ?? 0 }} |
|
@endforeach
@else
Aucun produit enregistré pour cet approvisionnement.
@endif