@php
$modules = [
['name' => 'Chart of Accounts', 'icon' => 'fas fa-list', 'route' => 'modules.reports.chart-of-accounts', 'description' => 'View complete account structure and classifications', 'color' => 'red'],
['name' => 'General Ledger', 'icon' => 'fas fa-book', 'route' => 'modules.reports.general-ledger', 'description' => 'Access all financial transactions and entries', 'color' => 'blue'],
['name' => 'Client Statement', 'icon' => 'fas fa-file-alt', 'route' => 'modules.reports.client-statement', 'description' => 'Generate client account statements and balances', 'color' => 'green'],
['name' => 'Case Status', 'icon' => 'fas fa-gavel', 'route' => 'modules.reports.case-status', 'description' => 'Review current status of all active cases', 'color' => 'yellow'],
['name' => 'Court Filings', 'icon' => 'fas fa-file-contract', 'route' => 'modules.reports.court-filings', 'description' => 'Track court document submissions and deadlines', 'color' => 'purple'],
['name' => 'Lawyer Statement', 'icon' => 'fas fa-user-tie', 'route' => 'modules.reports.lawyer-statement', 'description' => 'View lawyer performance and case assignments', 'color' => 'pink'],
['name' => 'Supplier Statement', 'icon' => 'fas fa-file-signature', 'route' => 'modules.reports.supplier-statement', 'description' => 'Monitor vendor accounts and payment status', 'color' => 'orange'],
['name' => 'Cash Book', 'icon' => 'fas fa-cash-register', 'route' => 'modules.reports.cash-book', 'description' => 'Review cash receipts and payment transactions', 'color' => 'red'],
['name' => 'Tax Reports', 'icon' => 'fas fa-file-invoice-dollar', 'route' => 'modules.reports.tax-reports', 'description' => 'Generate tax summaries and compliance reports', 'color' => 'blue'],
['name' => 'Fee Collection', 'icon' => 'fas fa-hand-holding-usd', 'route' => 'modules.reports.fee-collection', 'description' => 'Track collected fees and payment history', 'color' => 'green'],
['name' => 'Outstanding Fees', 'icon' => 'fas fa-exclamation-circle', 'route' => 'modules.reports.outstanding-fees', 'description' => 'View unpaid balances and pending invoices', 'color' => 'yellow'],
['name' => 'Total Fees', 'icon' => 'fas fa-calculator', 'route' => 'modules.reports.total-fees', 'description' => 'Calculate total fee revenue and statistics', 'color' => 'purple'],
['name' => 'Income Statements', 'icon' => 'fas fa-chart-line', 'route' => 'modules.reports.income-statements', 'description' => 'Analyze revenue, expenses, and profitability', 'color' => 'pink'],
['name' => 'Balance Sheet', 'icon' => 'fas fa-balance-scale', 'route' => 'modules.reports.balance-sheet', 'description' => 'Review assets, liabilities, and equity position', 'color' => 'orange'],
['name' => 'Trial Balance', 'icon' => 'fas fa-balance-scale-left', 'route' => 'modules.reports.trial-balance', 'description' => 'Verify accounting records and balances', 'color' => 'red'],
['name' => 'Journals', 'icon' => 'fas fa-journal-whills', 'route' => 'modules.reports.journals', 'description' => 'Access accounting journal entries and records', 'color' => 'blue'],
];
@endphp
@foreach ($modules as $module)
{{ $module['name'] }}
{{ $module['description'] }}
@endforeach