@extends('layouts.app') @section('title','Low Stock Report') @section('content')

Low Stock Report

Items at or below their reorder threshold — {{ $items->count() }} item(s)

Back
@include('partials._alerts') @if($items->isEmpty())

All items are above their reorder levels. No low stock alerts.

@else
@foreach($items as $item) @endforeach
SKUNameCategoryCurrent QtyReorder LevelShortfallSupplierActions
{{ $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 ?? '—' }}
@endif @endsection