@include('inventory::reports.partials.styles')
Products below reorder point - Know what to buy
| # | Product | Category | Current | Reorder Pt | Avg Daily | Days Left | Suggested Qty | Order Value | Status |
|---|---|---|---|---|---|---|---|---|---|
| {{ $i + 1 }} |
{{ strtoupper(substr($item->product_name, 0, 2)) }}
{{ $item->product_name }}
{{ $item->sku }}
|
{{ $item->category_name }} | {{ number_format($item->current_stock, 2) }} {{ $item->unit_name }} | {{ number_format($item->reorder_point, 0) }} | {{ $item->avg_daily_usage }}/day | {{ $item->days_of_stock == 999 ? '∞' : $item->days_of_stock.'d' }} | {{ number_format($item->suggested_qty, 0) }} | ₹{{ number_format($item->order_value, 0) }} | {{ $item->status == 'out' ? 'Out' : ($item->status == 'critical' ? 'Critical' : 'Low') }} |
All products are well stocked! No reorder needed.