@extends('admin.layout') @section('title', 'Products Management') @section('content')
| Image | Name | Category | Price | Stock | Status | Actions |
|---|---|---|---|---|---|---|
|
@if($product->image)
|
{{ $product->name }}
|
{{ $product->category->name }} | ৳{{ number_format($product->price, 2) }} | {{ $product->quantity }} | {{ $product->is_active ? 'Active' : 'Inactive' }} | Edit |
| No products found. | ||||||