Reset

Grand Total

{{ number_format($report['grand_total'], 2) }}

Income

{{ number_format($report['totals_by_type']['income'], 2) }}

Expense

{{ number_format($report['totals_by_type']['expense'], 2) }}

Totals By Type

@foreach($report['totals_by_type'] as $type => $total)
{{ str_replace('_', ' ', $type) }} {{ number_format($total, 2) }}
@endforeach

Totals By Category

@forelse($report['totals_by_category'] as $categoryTotal)
{{ $categoryTotal->category }} {{ number_format($categoryTotal->total, 2) }}
@empty

No data available.

@endforelse

Monthly Summary

@forelse($report['monthly_summary'] as $month => $types) @empty @endforelse
Month Income Expense Saving Loan Given Loan Taken Baki
{{ $month }} {{ number_format($types['income'], 2) }} {{ number_format($types['expense'], 2) }} {{ number_format($types['saving'], 2) }} {{ number_format($types['loan_given'], 2) }} {{ number_format($types['loan_taken'], 2) }} {{ number_format($types['baki'], 2) }}
No monthly summary data.