@extends('layouts.biller') @section('title', 'Item Sales Report') @section('page_title', 'Menu Engineering (Items)') @section('content')
| Rank | Item Name | Qty Sold | Revenue Generated |
|---|---|---|---|
| @php // Calculate global rank across pagination $rank = ($itemSales->currentPage() - 1) * $itemSales->perPage() + $index + 1; @endphp #{{ $rank }} | {{ $item->name }} | {{ $item->total_qty }} | ₹{{ number_format($item->total_revenue, 2) }} |
|
No items sold in this period |
|||