{{-- resources/views/reports/index.blade.php --}} @extends('layouts.app') @section('title', 'Reports') @section('page_title', 'Reports') @section('page_subtitle', 'Business intelligence and analytics') @section('content')
@php $reports = [ ['route' => 'reports.occupancy', 'icon' => 'bi-door-open', 'color' => '#3b82f6', 'title' => 'Occupancy', 'desc' => 'Room occupancy rates, available nights, daily breakdown'], ['route' => 'reports.revenue', 'icon' => 'bi-graph-up', 'color' => '#10b981', 'title' => 'Revenue', 'desc' => 'Total revenue, trends, breakdown by payment method'], ['route' => 'reports.reservations', 'icon' => 'bi-calendar3', 'color' => '#C4622D', 'title' => 'Reservations', 'desc' => 'Booking trends, sources, cancellation rates'], ['route' => 'reports.financial', 'icon' => 'bi-bar-chart-line', 'color' => '#8b5cf6', 'title' => 'Financial Summary','desc' => 'Revenue vs expenses, profit margin, outstanding'], ['route' => 'reports.invoice-aging','icon' => 'bi-clock-history', 'color' => '#ef4444', 'title' => 'Invoice Aging', 'desc' => 'Outstanding invoices by age — current to 90+ days'], ['route' => 'reports.payments', 'icon' => 'bi-cash-coin', 'color' => '#f59e0b', 'title' => 'Payments', 'desc' => 'All payments, by method, currency and date'], ['route' => 'reports.guests', 'icon' => 'bi-people', 'color' => '#06b6d4', 'title' => 'Guests', 'desc' => 'Guest stats, nationalities, new vs returning'], ['route' => 'reports.expenses', 'icon' => 'bi-wallet2', 'color' => '#ec4899', 'title' => 'Expenses', 'desc' => 'Expense breakdown by category and month'], ['route' => 'reports.tax', 'icon' => 'bi-receipt-cutoff', 'color' => '#64748b', 'title' => 'Tax Report', 'desc' => 'Tax collected by rate — VAT, levies etc.'], ['route' => 'reports.cash-up', 'icon' => 'bi-safe', 'color' => '#0ea5e9', 'title' => 'Cash Up', 'desc' => 'Shift summaries, variances, cash totals'], ]; @endphp @foreach($reports as $report)
{{ $report['title'] }}
{{ $report['desc'] }}
@endforeach
@endsection