@include('reportes.partials.ventas.header') @include('reportes.partials.ventas.footer')
@foreach ($detallesVenta as $detalle) @endforeach
Código Nombre Presentacion Cantidad Precio de Venta Sub Total
{{ $detalle->producto->codigo }} {{ $detalle->producto->nombre }} {{ $detalle->producto->presentacion->nombre }} {{ $detalle->cantidad }} {{ number_format($detalle->precio,2) }} {{ number_format($detalle->precio * $detalle->cantidad, 2) }}
Total {{ number_format($venta->total, 2) }}