Unidad
Producto
Impuesto
Cant.
Precio
Importe
@if (count($datosSistem['carrito']))
@foreach ($datosSistem['carrito'] as $carrito)
{{$carrito->name}} ({{$carrito->options->codigo}})
{{number_format(($carrito->price * $carrito->qty), 2)}}
@endforeach
@else
Agregar el producto a través de la búsqueda en el campo de arriba
@endif
SUB-TOTALES
{{Cart::content()->count()}} ({{Cart::count()}})
{{number_format($total_precio_unit, 2)}}
{{Cart::total()}}
OP. GRAVADAS:
{{number_format(($gravadas-($gravadas * 0.18)),2)}}
OP. EXONERADAS:
{{number_format($exonerados,2)}}
OP. INAFECTAS:
{{number_format($inafectos,2)}}
IGV - {{number_format($igv_carrito,0)}}%:
{{number_format(($gravadas * $igv_carrito / 100),2)}}
IMPORTE TOTAL:
{{Cart::total()}}