| # | Producto | Cantidad | Precio Unit. | Total |
|---|---|---|---|---|
| {{ $index + 1 }} |
{{ $detail->product->name ?? 'N/A' }}
@if($detail->product->sku)
SKU: {{ $detail->product->sku }} @endif |
{{ number_format($detail->quantity_ordered, 0) }} | {{ number_format($detail->unit_price, 2) }} {{ strtoupper($invoice->currency) }} | {{ number_format($detail->total_price, 2) }} {{ strtoupper($invoice->currency) }} |