@extends('layouts.app') @section('title', 'Inventory Report') @section('breadcrumb')
Stock levels, valuation, and alerts
All items in stock
No items out of stock
No sales data
| Image | Product | Category | Supplier | Stock | Min Stock | Unit | Cost Price | Sell Price | Stock Value | Status |
|---|---|---|---|---|---|---|---|---|---|---|
|
@if($product->image)
|
{{ $product->name }}
{{ $product->sku }}
@if($product->barcode)
Barcode: {{ $product->barcode }}
@endif
|
{{ $product->category?->name ?? '-' }} | {{ $product->supplier?->name ?? '-' }} | @if(!$product->track_stock) N/A @else {{ number_format($product->stock_quantity, 2) }} @endif | {{ number_format($product->min_stock ?? 0, 2) }} | {{ strtoupper($product->unit ?? 'PCS') }} | Rs. {{ number_format($product->cost_price, 2) }} | Rs. {{ number_format($product->selling_price, 2) }} | Rs. {{ number_format($product->selling_price * $product->stock_quantity, 0) }} | @if(!$product->track_stock) Untracked @elseif($product->isOutOfStock()) Out of Stock @elseif($product->isLowStock()) Low Stock @else In Stock @endif |