@include('pdf.partials.styles-unified')

REPORTE DE REVALIDACIONES | {{ $empresa->name }}

Total de Registros: {{ $records->count() }}

Generado: {{ now()->format('d/m/Y H:i:s') }}

Por: {{ auth()->user()->name ?? 'Sistema' }}

@forelse($records as $index => $record) @empty @endforelse
Serie Orden Cliente Fecha Pollos Jabas P. Bruto Tara P. Neto Promedio Estado
{{ $index + 1 }} {{ $record->serie_orden }} {{ optional($record->cliente)->razon_social ?? 'N/A' }} {{ $record->fecha_revalidacion ? $record->fecha_revalidacion->format('d/m/Y') : '-' }} {{ $record->cantidad_pollos ?? '-' }} {{ $record->cantidad_jabas ?? '-' }} {{ $record->peso_total_bruto !== null ? number_format((float) $record->peso_total_bruto, 2) : '-' }} {{ $record->tara !== null ? number_format((float) $record->tara, 2) : '-' }} {{ $record->peso_total_neto !== null ? number_format((float) $record->peso_total_neto, 2) : '-' }} {{ ($record->peso_total_neto !== null && $record->cantidad_pollos > 0) ? number_format((float) $record->peso_total_neto / (float) $record->cantidad_pollos, 4) : '-' }} {{ (int) $record->estado === 1 ? 'Registrado' : 'Anulado' }}
No se encontraron registros