@include('pdf.partials.styles-unified')
Total de Pagos Históricos: {{ $records->count() }}
Generado: {{ now()->format('d/m/Y H:i:s') }}
| N° | Fecha | Cliente | Método de Pago | Cuenta | N° Operación | Usuario | Monto |
|---|---|---|---|---|---|---|---|
| {{ $index++ }} | {{ \Carbon\Carbon::parse($item->fecha)->format('d/m/Y') }} | @if($item->cliente) {{ $item->cliente->razon_social }} @else N/A @endif | @if($item->metodoPago) {{ $item->metodoPago->description }} @else N/A @endif | @if($item->banco) {{ $item->banco->name }} @else N/A @endif | {{ $item->num_operacion ?? 'N/A' }} | @if($item->user) {{ $item->user->name }} @else N/A @endif | S/ {{ number_format($item->monto_total, 2) }} |
| No hay pagos históricos registrados | |||||||
| TOTAL DE PAGOS HISTÓRICOS: | S/ {{ number_format($totals->total_monto ?? 0, 2) }} | ||||||