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

REPORTE DE EGRESOS DE DINERO | {{ $empresa->name }}

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

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

@php $index = 1; @endphp @forelse($records as $item) @empty @endforelse
Fecha Usuario Descripción Estado Monto
{{ $index++ }} {{ \Carbon\Carbon::parse($item->fecha_registro)->format('d/m/Y') }} {{ $item->user->name }} {{ $item->descripcion }} @if($item->estado) ACTIVO @else INACTIVO @endif S/ {{ number_format($item->monto, 2) }}
No hay egresos registrados
TOTAL DE EGRESOS: S/ {{ number_format($totals->total_monto ?? 0, 2) }}