Cotización

@foreach ($carrito as $item) @endforeach
Producto Variante Cantidad Precio unitario Subtotal
{{ $item['nombre'] }} {{ $item['variante'] ?? '-' }} {{ $item['cantidad'] }} ${{ number_format($item['precio_venta'], 2) }} ${{ number_format($item['precio_venta'] * $item['cantidad'], 2) }}

Total: ${{ number_format($total, 2) }}