@extends('layouts.app') @section('title','Low Stock Report') @section('content')
Items at or below their reorder threshold — {{ $items->count() }} item(s)
All items are above their reorder levels. No low stock alerts.
| SKU | Name | Category | Current Qty | Reorder Level | Shortfall | Supplier | Actions |
|---|---|---|---|---|---|---|---|
| {{ $item->sku }} | {{ $item->name }} | {{ $item->category?->name ?? '—' }} | {{ number_format((float)$item->current_quantity,3) }} {{ $item->unit_of_measure }} | {{ number_format((float)$item->reorder_level,3) }} | {{ number_format(max(0,(float)$item->reorder_level-(float)$item->current_quantity),3) }} | {{ $item->supplier?->name ?? '—' }} |