@extends('layouts.app') @section('title', 'Low Stock Report') @section('content')
| SKU | Product Name | Category | Current Stock | Alert Quantity | Status | Action |
|---|---|---|---|---|---|---|
| {{ $product->sku }} | {{ $product->name }} | {{ $product->category->name ?? 'N/A' }} | {{ number_format($product->current_stock, 2) }} {{ $product->unit->name ?? '' }} | {{ number_format($product->alert_quantity, 2) }} | @if($product->current_stock <= 0) Out of Stock @else Low Stock @endif | Restock Edit |
| All stock levels are healthy. | ||||||