@include('reportes.partials.header') @include('reportes.partials.footer')
@foreach ($detallesIngreso as $detalle) @endforeach
Código Nombre Presentacion Cantidad Costo Unitario Sub Total
{{ $detalle->producto->codigo }} {{ $detalle->producto->nombre }} {{ $detalle->producto->presentacion->nombre }} {{ $detalle->cantidad }} {{ number_format($detalle->precio_compra, 2) }} {{ number_format($detalle->precio_compra * $detalle->cantidad, 2) }}
Total {{ number_format($ingreso->total, 2) }}