Fecha | Cuenta | Monto | Descripción |
---|---|---|---|
{{ $ingreso->fecha }} | {{ $ingreso->cuenta }} | {{ number_format($ingreso->haber, 2) }} | {{ $ingreso->descripcion }} |
Total Ingresos | {{ number_format($totalIngresos, 2) }} |
Fecha | Cuenta | Monto | Descripción |
---|---|---|---|
{{ $gasto->fecha }} | {{ $gasto->cuenta }} | {{ number_format(abs($gasto->debe), 2) }} | {{ $gasto->descripcion }} |
Total Gastos | {{ number_format(abs($totalGastos), 2) }} |
Utilidad Neta | {{ number_format(abs($utilidad), 2) }} |