| Désignation | Quantité | Prix unitaire | Total |
|---|---|---|---|
| {{ $item->description ?? $item->name ?? 'Item' }} | {{ $item->quantity ?? 1 }} | {{ number_format($item->price ?? $item->unit_price ?? 0, 2, ',', ' ') }} € | {{ number_format(($item->quantity ?? 1) * ($item->price ?? $item->unit_price ?? 0), 2, ',', ' ') }} € |
| Aucun item | |||
| Sous-total | {{ number_format($invoice->subtotal ?? $invoice->total ?? 0, 2, ',', ' ') }} € |
| Taxe | {{ number_format($invoice->tax ?? 0, 2, ',', ' ') }} € |
| Total | {{ number_format($invoice->total ?? 0, 2, ',', ' ') }} € |