@extends('layouts.app') @section('content')

Every report your operations or finance team actually uses.

@foreach([ ['Daily Sales Summary', 'Consolidated sales by payment mode, order type, and category for any date range.'], ['Cashier Settlement Report', 'Expected vs. actual cash, UPI, and card collected by each cashier, per shift.'], ['Outlet Comparison Report', 'Revenue, order count, average ticket, and product mix across all outlets side by side.'], ['Category Sales Report', 'Which categories and items are driving revenue and which are underperforming.'], ['Item-Wise Sales Report', 'Every item sold in a period — quantity, revenue, contribution to total.'], ['Payment Mode Report', 'UPI, card, cash, and wallet breakdowns by outlet, cashier, and time period.'], ['Inventory Consumption Report', 'Theoretical vs. actual consumption. Variance by item and category.'], ['Wastage Report', 'Wastage logged by item, reason, station, and user — with cost impact.'], ['Purchase & Supplier Report', 'PO status, GRN history, and outstanding payables by supplier.'], ['Staff Shift Report', 'Active sessions, sales per staff member, and modification logs by shift.'], ['Kitchen Performance Report', 'Avg prep time, orders per hour, and station load by time of day.'], ['Tax & GST Report', 'Tax collected by category, tax rate, and outlet — ready for filing.'], ] as [$title, $desc])
{{ $title }}
{{ $desc }}
@endforeach
@include('components.screen-mockup', ['label' => 'Chain Dashboard — All Outlets', 'type' => 'dashboard'])
@foreach([ ['Real-time', 'All reports update live — no waiting for overnight batch jobs.', 'lightning'], ['Exportable', 'Download as CSV or PDF. Integrate with accounting tools.', 'document'], ['Multi-outlet', 'Consolidated chain reports and per-outlet drilldown.', 'globe'], ['Role-based', 'Cashiers see their reports; managers see the chain.', 'lock'], ] as [$title, $desc, $icon])
@include('components.icons.' . $icon)
{{ $title }}

{{ $desc }}

@endforeach
@endsection