| Producto | Cant. | Precio Unit. | Desc. % | Subtotal | Total |
|---|---|---|---|---|---|
|
{{ $item->product->title ?? $item->name ?? 'Producto no disponible' }}
@if($item->product && $item->product->CO_ARTI)
Código: {{ trim($item->product->CO_ARTI) }} @endif |
{{ $item->quantity ?? $item->qty ?? 1 }} | ${{ number_format($item->unit_price ?? $item->price ?? 0, 2) }} | {{ $item->discount_percentage ?? 0 }}% | ${{ number_format($subtotal, 2) }} | ${{ number_format($total, 2) }} |
| Subtotal: | ${{ number_format($quote->subtotal ?? 0, 2) }} |
| Descuento: | -${{ number_format($quote->discount, 2) }} |
| TOTAL FINAL: | ${{ number_format($quote->grand_total ?? $quote->subtotal ?? 0, 2) }} |
| PRECIO COTIZADO: | ${{ number_format($quote->quoted_price, 2) }} |