@php $links = [ ['route' => 'reports.sales.daily', 'label' => 'Daily Sales', 'description' => 'Revenue, transactions, and hourly breakdown for a single day.'], ['route' => 'reports.sales.monthly', 'label' => 'Monthly Sales', 'description' => 'Revenue trend across a month, compared to the previous one.'], ['route' => 'reports.purchases', 'label' => 'Purchase', 'description' => 'Spend by supplier and order status over a period.'], ['route' => 'reports.inventory', 'label' => 'Inventory', 'description' => 'Current stock valuation and low-stock counts.'], ['route' => 'reports.profit', 'label' => 'Profit', 'description' => 'Gross and net profit, using cost snapshots at time of sale.'], ['route' => 'reports.customers', 'label' => 'Customer', 'description' => 'Top members ranked by spend.'], ['route' => 'reports.suppliers', 'label' => 'Supplier', 'description' => 'Top suppliers ranked by purchase volume.'], ['route' => 'reports.cash-flow', 'label' => 'Cash Flow', 'description' => 'Money in vs. money out across every finance account.'], ['route' => 'reports.dead-stock', 'label' => 'Dead Stock', 'description' => 'Stock on hand with no recent sales activity.'], ['route' => 'reports.best-sellers', 'label' => 'Best Seller', 'description' => 'Top products by quantity sold or revenue.'], ]; @endphp

{{ __('Reports') }}

@foreach ($links as $link)
{{ __($link['label']) }}
{{ __($link['description']) }}
@endforeach