@include('pdf.partials.styles-unified')
Total de Órdenes: {{ $records->count() }}
Total Aves: {{ number_format($totals->cantidad_pollos ?? 0, 0) }}
Peso Neto Total: {{ number_format($totals->total_peso_neto ?? 0, 2) }} kg
Generado: {{ now()->format('d/m/Y H:i:s') }}
| N° | Usuario Registro | Fecha Ingreso | Procedencia | Número de Guía | Total Aves | Peso Bruto (kg) | Peso Tara (kg) | Peso Neto (kg) |
|---|---|---|---|---|---|---|---|---|
| {{ $index++ }} | {{ $item->user_name }} | {{ \Carbon\Carbon::parse($item->fecha_ingreso)->format('d/m/Y') }} | {{ $item->lugar_procedencia }} | {{ $item->numero_guia }} | {{ number_format($item->detalle_sum_cantidad_pollos, 0) }} | {{ number_format($item->peso_bruto, 2) }} | {{ number_format($item->peso_tara, 2) }} | {{ number_format($item->peso_neto, 2) }} |
| No hay órdenes de ingreso registradas | ||||||||
| TOTALES: | {{ number_format($totals->cantidad_pollos, 0) }} | {{ number_format($totals->total_peso_bruto, 2) }} | {{ number_format($totals->total_tara, 2) }} | {{ number_format($totals->total_peso_neto, 2) }} | ||||