@extends('layouts.app') @section('title', 'Inventory Report') @section('content')
| Product | Category | Size | Color | Purchase Price | Selling Price | Quantity | Value | Status |
|---|---|---|---|---|---|---|---|---|
| {{ $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 @elseif($product->quantity <= 5) Low Stock @else In Stock @endif |
| No products found. | ||||||||