ARCHIVE {{ $Exercice }} DES VENTES
Montant Total: {{ $MontantVente }} FBU
| # |
Produit |
Quantite |
Montant |
Auteur |
Enregistré le: |
Action |
@foreach($Commandes as $Commande)
@if($Commande->EtatCommande == 1)
| {{ $Commande->id }} |
{{ $Commande->ProduitNom }} |
{{ $Commande->Quantite }} |
{{ $Commande->Montant }} |
{{ $Commande->Auteur }} |
{{ $Commande->DateCreation->format('d/m/Y') }} |
|
@else
| {{ $Commande->id }} |
{{ $Commande->ProduitNom }} |
{{ $Commande->Quantite }} |
{{ $Commande->Montant }} |
{{ $Commande->Auteur }} |
{{ $Commande->DateCreation->format('d/m/Y') }} |
|
@endif
@endforeach