@extends('layouts.app') @section('title', 'Low Stock Report') @section('content')
Items currently below their minimum stock level
| Item Code | Item Name | Category | Warehouse | Current Qty | Min Stock | Shortage | Status |
|---|---|---|---|---|---|---|---|
| {{ $stock->item->item_code ?? '' }} | {{ $stock->item->item_name ?? '' }} | @php $catLabels = ['raw_material'=>'Raw Material','wip'=>'WIP','finished_good'=>'Finished Good']; @endphp {{ $catLabels[$stock->item->category ?? ''] ?? ucfirst($stock->item->category ?? '') }} | {{ $stock->warehouse->name ?? '' }} | {{ number_format($stock->quantity, 2) }} | {{ number_format($stock->item->minimum_stock_level ?? 0, 2) }} | {{ number_format($shortage, 2) }} | LOW STOCK |
| All items are above minimum stock levels. | |||||||