Sales Orders {{ (int) ($summary->total_sales_orders ?? 0) }} |
Items Sold {{ (int) ($summary->total_qty_sold ?? 0) }} |
Total Sales Amount {{ format_currency($summary->total_sales_amount ?? 0) }} |
Last Sold {{ $latestSaleAt ? format_date($latestSaleAt) : 'N/A' }} |
| Total Stock In | {{ (int) ($stockSummary->total_stock_in ?? 0) }} |
|---|---|
| Total Stock Out | {{ (int) ($stockSummary->total_stock_out ?? 0) }} |
| Total Returns | {{ (int) ($stockSummary->total_returns ?? 0) }} |
| Current Stock | {{ $product->formatted_total_stock }} |
| Date | Items | Amount |
|---|---|---|
| {{ format_date($row->sale_date) }} | {{ (int) $row->qty }} | {{ format_currency($row->amount) }} |
| No sales data | ||
| Month | Items | Amount |
|---|---|---|
| {{ $row->sale_month }} | {{ (int) $row->qty }} | {{ format_currency($row->amount) }} |
| No monthly data | ||
| Time Slot | Items | Amount |
|---|---|---|
| {{ $row->time_label }} | {{ (int) $row->qty }} | {{ format_currency($row->amount) }} |
| No hourly data | ||
| Date | Movement Type | Qty | Stock Before | Stock After |
|---|---|---|---|---|
| {{ format_date($row->created_at) }} | {{ $label }} | {{ (int) $row->qty }} | {{ (int) $row->stock_before }} | {{ (int) $row->stock_after }} |
| No stock logs for selected date range. | ||||