@php
$reports = [
[
'title' => 'Member Report',
'route' => 'report.member_report',
'icon' => 'mdi-account-group',
'color' => 'primary',
],
[
'title' => 'Organization Report',
'route' => 'report.organizer_report',
'icon' => 'mdi-domain',
'color' => 'secondary',
],
['title' => 'Donation', 'route' => 'report.donation', 'icon' => 'mdi-hand-heart', 'color' => 'success'],
[
'title' => 'Member Invoice',
'route' => 'report.member-invoice',
'icon' => 'mdi-file-document-box',
'color' => 'info',
],
[
'title' => 'Subscription',
'route' => 'report.subscription-invoice-report',
'icon' => 'mdi-calendar-check',
'color' => 'warning',
],
['title' => 'Income', 'route' => 'report.income', 'icon' => 'mdi-cash-plus', 'color' => 'success'],
['title' => 'Expense', 'route' => 'report.expense', 'icon' => 'mdi-cash-minus', 'color' => 'danger'],
[
'title' => 'Balance Sheet',
'route' => 'report.balance_sheet',
'icon' => 'mdi-file-chart',
'color' => 'dark',
],
];
@endphp
@foreach ($reports as $report)
@endforeach
@endsection