| PRODUCTO | CODIGO | CANT. | PRECIO | SUBTOTAL | DESCT. | TOTAL |
|---|---|---|---|---|---|---|
| {{ $item->producto->descripcion }} | {{ $item->producto->codigo_producto }} | {{ $item->cantidad }} | S/ {{ number_format($item->precio_unitario, 2) }} | S/ {{ number_format($subtotal, 2) }} | {{ $descuentoMonto > 0 ? number_format($descuentoMonto, 2) : '0' }} | S/ {{ number_format($totalFila, 2) }} |
| SUBTOTAL: | S/ {{ number_format($cotizacione->subtotal, 2) }} |
| IGV ({{ number_format($porcentajeIGV, 0) }}%): | S/ {{ number_format($cotizacione->impuesto_total, 2) }} |
| TOTAL: | S/ {{ number_format($cotizacione->total, 2) }} |