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

Low Stock Products

Back
Low Stock Products (≤5)
{{ $lowStockCount }}
Out of Stock
{{ $outOfStock }}
@forelse($products as $product) @empty @endforelse
Product Category Size Color Purchase Price Selling Price Quantity Value Status Actions
{{ $product->name }} {{ $product->category->name ?? '—' }} {{ $product->size ?? '—' }} {{ $product->color ?? '—' }} ₹{{ number_format($product->purchase_price, 2) }} ₹{{ number_format($product->selling_price, 2) }} {{ $product->quantity }} ₹{{ number_format($product->quantity * $product->selling_price, 2) }} @if($product->quantity <= 0) Out of Stock @else Low Stock @endif Edit
No low stock products found. All products are well stocked!
@endsection