@if ($products->count() > 0)
| ID | Product Name | SKU | Category | Stock | Purchase Price | Selling Price | Actions |
|---|---|---|---|---|---|---|---|
| #{{ $product->id }} |
{{ $product->name }}
{{ $product->brand?->name ?? 'No Brand' }}
|
{{ $product->sku }} | {{ $product->category?->name ?? 'General' }} |
@php
$stockStatus = 'text-success';
if($product->current_stock <= 0) $stockStatus = 'text-danger';
elseif($product->current_stock <= $product->alert_quantity) $stockStatus = 'text-warning';
@endphp
{{ number_format($product->current_stock, 0) }} {{ $product->unit?->short_name ?? 'pcs' }}
@if($product->current_stock <= $product->alert_quantity)
Low Stock
@endif
|
MWK {{ number_format($product->purchase_price, 0) }} | MWK {{ number_format($product->selling_price, 0) }} |