@extends('layouts.app') @section('title', 'Low Stock Alert') @section('content')
Items below reorder point - action required
{{ $inventory->total() }} items are below their reorder point. Consider creating purchase orders to replenish stock.
| SKU | Product Name | Current Stock | Reorder Point | Shortage | Location | Actions |
|---|---|---|---|---|---|---|
|
{{ $item->sku }}
|
{{ $item->product_name }}
|
{{ $item->quantity }} | {{ $item->reorder_point }} | -{{ $item->reorder_point - $item->quantity }} | {{ $item->location ?? '-' }} | Create PO |
No items are currently below their reorder point.