@extends('layouts.app') @section('title', 'Inventory') @section('breadcrumb')
Track and manage your product stock levels
| Product | Current Stock | Reorder Level | Status | Action |
|---|---|---|---|---|
|
{{ $product->name }}
{{ $product->sku }}
|
{{ number_format($product->stock_quantity, 0) }} {{ $product->unit ?? 'pcs' }} | {{ number_format($product->reorder_level, 0) }} {{ $product->unit ?? 'pcs' }} | @if($product->stock_quantity <= 0) Out of Stock @else Low Stock @endif |
| Product | Item Code | Category | Cost Price | Stock Qty | Stock Value | Status | Actions |
|---|---|---|---|---|---|---|---|
|
@if($product->image)
{{ $product->name }}
@if($product->barcode)
{{ $product->barcode }}
@endif
|
{{ $product->sku ?? '-' }} | {{ $product->category?->name ?? '-' }} | Rs. {{ number_format($product->cost_price, 2) }} | @if($product->track_stock) {{ number_format($product->stock_quantity, 0) }} {{ $product->unit ?? 'pcs' }} @else Not tracked @endif | @if($product->track_stock) Rs. {{ number_format($product->stock_quantity * $product->cost_price, 2) }} @else - @endif | @if(!$product->track_stock) No Track @elseif($product->stock_quantity <= 0) Out of Stock @elseif($product->stock_quantity <= $product->reorder_level) Low Stock @else In Stock @endif | |
|
No products found |
|||||||