@extends('layouts.app') @section('title', 'Products') @section('content')
@if(request('search') || request('status')) Clear @endif
@forelse($products as $product) @empty @endforelse
Product ID Name HSN Code MRP Stock Status Actions
{{ $product->product_id }} {{ $product->name }} {{ $product->hsn_code ?? '—' }} ₹{{ number_format($product->mrp, 2) }} {{ $product->stock_quantity }} @if($product->status) Active @else Inactive @endif

No products found

Get started by creating a new product.

Add Product
@endsection