| Nom de l'article | {{ $article->name }} |
|---|---|
| Boutique | {{ $article->store->name }} |
| Prix d'achat | {{ number_format($article->cost, 0, '.', ' ') }} GNF |
| Prix de vente | {{ number_format($article->price, 0, '.', ' ') }} GNF |
| Profit | {{ number_format((($article->price * $article->quantity) - ($article->cost * $article->quantity)), 0, '.', ' ') }} GNF |
| # | Fournisseur | Quantité |
|---|---|---|
| {{ $key + 1 }} | {{ $achat->achat->supplier->company }} | {{ $achat->quantity }} |
| Aucun achat disponible. | ||
| # | Client | Quantité |
|---|---|---|
| {{ $key + 1 }} | {{ $vente->vente->customer->fullname }} | {{ $vente->quantity }} |
| Aucune vente disponible. | ||