Control de Gastos

{{-- Filters and Summary --}}
Total Gastos (Periodo)
S/ {{ number_format($totalPeriodo, 2) }}
{{-- Expenses List --}}
@forelse($gastos as $gasto) @empty @endforelse
Fecha Categoría Descripción Monto Acciones
{{ \Carbon\Carbon::parse($gasto->fecha)->format('d/m/Y') }} {{ $tipos[$gasto->tipo] ?? $gasto->tipo }} {{ $gasto->descripcion }} S/ {{ number_format($gasto->monto, 2) }}
No hay gastos registrados en este periodo.
{{ $gastos->links() }}
{{-- Modal Add Gasto --}}

{{ __('Registrar Nuevo Gasto') }}