@extends('layouts.app') @section('title', 'Products') @section('content')
| # | Category | Weight | Price/Bag | Stock (Bags) | Actions |
|---|---|---|---|---|---|
| {{ $product->id }} | {{ $product->category->name ?? '-' }} | {{ $product->weight->label ?? '-' }} | Rs. {{ number_format($product->price, 2) }} | {{ $product->stock }} | Edit |
| No products yet | |||||