Branch: {{ $branch->name }}
@endif| Item Name | Category | Quantity Sold | Selling Price | Total Revenue |
|---|---|---|---|---|
| {{ $item->item_name }} ({{ $variation->variation }}) | {{ $item->category->category_name ?? '' }} | {{ $quantitySold }} | {{ currency_format($averagePrice, $currencyId) }} | {{ currency_format($totalAmount, $currencyId) }} |
| {{ $item->item_name }} | {{ $item->category->category_name ?? '' }} | {{ $quantitySold }} | {{ currency_format($averagePrice, $currencyId) }} | {{ currency_format($totalAmount, $currencyId) }} |
| No items sold during this period | ||||
| TOTAL | {{ $menuItems->sum(fn($item) => $item->orders->sum('quantity')) }} | - | {{ currency_format($menuItems->sum(fn($item) => $item->orders->sum(fn($order) => $order->amount)), $currencyId) }} | |