| # | Fecha | Concepto | Caja | Monto (S/) | DNI | Cliente | Estado |
|---|---|---|---|---|---|---|---|
| {{ $i + 1 }} | {{ \Carbon\Carbon::parse($ingreso->fecha)->format('d/m/Y') }} | {{ $ingreso->concepto->nombre ?? '-' }} | {{ $ingreso->caja->nombre ?? '-' }} | {{ number_format($ingreso->monto, 2) }} | {{ $ingreso->dni ?? '-' }} | {{ trim($ingreso->apellidos . ' ' . $ingreso->nombres) }} | {{ $ingreso->tipo ?? '-' }} |
Total Ingresos: S/ {{ number_format($total, 2) }}