@extends('layouts.app') @section('title', 'Products') @section('content')
Manage your product inventory
| Product ID | Name | HSN Code | MRP | Distributor Price | Shop Price | Ecom Price | Stock | Status | Actions |
|---|---|---|---|---|---|---|---|---|---|
| {{ $product->product_id }} | {{ $product->name }} | {{ $product->hsn_code ?? '—' }} | ₹{{ number_format($product->mrp, 2) }} | ₹{{ number_format($product->dealer_price, 2) }} | ₹{{ number_format($product->shop_price, 2) }} | ₹{{ number_format($product->ecom_price, 2) }} | {{ $product->stock_quantity }} | @if($product->status) Active @else Inactive @endif |
|
|
No products found Get started by creating a new product. Add Product |
|||||||||