{{-- resources/views/reports/partials/nav.blade.php --}} @php $links = [ ['route' => 'reports.occupancy', 'label' => 'Occupancy', 'icon' => 'bi-door-open'], ['route' => 'reports.revenue', 'label' => 'Revenue', 'icon' => 'bi-graph-up'], ['route' => 'reports.reservations', 'label' => 'Reservations', 'icon' => 'bi-calendar3'], ['route' => 'reports.financial', 'label' => 'Financial', 'icon' => 'bi-bar-chart-line'], ['route' => 'reports.invoice-aging','label' => 'Aging', 'icon' => 'bi-clock-history'], ['route' => 'reports.payments', 'label' => 'Payments', 'icon' => 'bi-cash-coin'], ['route' => 'reports.guests', 'label' => 'Guests', 'icon' => 'bi-people'], ['route' => 'reports.expenses', 'label' => 'Expenses', 'icon' => 'bi-wallet2'], ['route' => 'reports.tax', 'label' => 'Tax', 'icon' => 'bi-receipt-cutoff'], ['route' => 'reports.cash-up', 'label' => 'Cash Up', 'icon' => 'bi-safe'], ]; @endphp
← Reports
@foreach($links as $link) {{ $link['label'] }} @endforeach