@extends('layouts.app') @section('title', 'Products') @section('breadcrumb')
{{ $products->total() }} products {{ $lowStock > 0 ? "• {$lowStock} low stock" : '' }}
| Product | Item Code | Category | Cost Price | Selling Price | Stock | Status | Actions |
|---|---|---|---|---|---|---|---|
|
@if($product->image)
@endif
{{ $product->name }}
{{ $product->unit }}
|
{{ $product->sku ?? '-' }}
@if($product->barcode)
{{ $product->barcode }}
@endif
|
{{ $product->category?->name ?? '—' }} | Rs. {{ number_format($product->cost_price, 2) }} | Rs. {{ number_format($product->selling_price, 2) }} |
{{ number_format($product->stock_quantity, 0) }} {{ $product->unit }}
|
{{ $product->is_active ? 'Active' : 'Inactive' }} | |
| No products found | |||||||