@extends('layouts.app') @section('title', 'Low Stock Items') @section('page-title', 'Low Stock Items') @section('content')
Items with quantity at or below minimum order quantity
| Product | Supplier | Current Stock | Min. Order Qty | Status | Actions |
|---|---|---|---|---|---|
|
{{ $stock->product_name }}
{{ $stock->product_code }}
|
{{ $stock->supplier->business_name }}
{{ $stock->supplier->contact_person }}
|
{{ number_format($stock->available_quantity, 2) }} {{ $stock->unit }}
@if($stock->available_quantity <= 0)
Out of Stock
@elseif($stock->available_quantity <= $stock->minimum_order_quantity * 0.5)
Critical Low
@else
Low Stock
@endif
|
{{ number_format($stock->minimum_order_quantity, 2) }} {{ $stock->unit }} | @if($stock->available_quantity <= 0) Out of Stock @elseif($stock->available_quantity <= $stock->minimum_order_quantity * 0.5) Critical @else Low @endif |
Showing {{ $lowStocks->firstItem() }} to {{ $lowStocks->lastItem() }} of {{ $lowStocks->total() }} results
No items are currently below their minimum order quantities.
View All Stock