@extends('admin::layouts.master') @section('title', 'Products') @section('content')
| ID | Name | Category | Price | Stock | Active | Actions |
|---|---|---|---|---|---|---|
| {{ $product->id }} | {{ $product->name }} | {{ $product->category?->name ?? '-' }} | €{{ number_format($product->price, 2) }} | {{ $product->stock_quantity }} | {{ $product->is_active ? 'Yes' : 'No' }} | Edit |
| No products found. | ||||||