@if($instituto && $instituto->logo) Logo @endif
{{ $instituto->nombre ?? 'INSTITUTO' }}
Reporte de Egresos
@php $total = 0; @endphp @foreach($ingresos as $i => $ingreso) @php $total += $ingreso->monto; @endphp @endforeach
# 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) }}