Order Summary
Total Orders:
{{ $report->total_orders }}
Completed:
{{ $report->completed_orders }}
Cancelled:
{{ $report->cancelled_orders }}
Refunded:
{{ $report->refunded_orders }}
Sales Summary
Gross Sales:
{{ number_format($report->gross_sales, 2) }}
Discounts:
-{{ number_format($report->total_discounts, 2) }}
Net Sales:
{{ number_format($report->net_sales, 2) }}
Taxes Collected:
{{ number_format($report->total_taxes, 2) }}
Tips:
{{ number_format($report->total_tips, 2) }}
Refunds:
-{{ number_format($report->total_refunds, 2) }}
Payment Methods
Cash:
{{ number_format($report->cash_sales, 2) }}
Card:
{{ number_format($report->card_sales, 2) }}
Mobile Money:
{{ number_format($report->mobile_money_sales, 2) }}
Credit:
{{ number_format($report->credit_sales, 2) }}
Other:
{{ number_format($report->other_sales, 2) }}
Sales by Order Type
Dine-In:
{{ number_format($report->dine_in_sales, 2) }}
Takeaway:
{{ number_format($report->takeaway_sales, 2) }}
Delivery:
{{ number_format($report->delivery_sales, 2) }}
Cash Reconciliation
Opening Cash:
{{ number_format($report->opening_cash, 2) }}
Cash Received:
+{{ number_format($report->cash_received, 2) }}
Cash Paid Out:
-{{ number_format($report->cash_paid_out, 2) }}
Expected Cash:
{{ number_format($report->expected_cash, 2) }}
Actual Cash:
{{ number_format($report->actual_cash ?? 0, 2) }}
Difference:
{{ ($report->cash_difference ?? 0) >= 0 ? '+' : '' }}{{ number_format($report->cash_difference ?? 0, 2) }}
Expenses
Total Expenses:
-{{ number_format($report->total_expenses, 2) }}
GROSS PROFIT:
{{ number_format($report->gross_profit, 2) }}
@if($report->top_items && count($report->top_items) > 0)
Top Selling Items
@foreach(array_slice($report->top_items, 0, 5) as $item)
{{ $item['name'] }} ({{ $item['quantity'] }})
{{ number_format($item['total'], 2) }}
@endforeach
@endif
@if($report->notes)
Notes
{{ $report->notes }}
@endif