@extends('layouts.app') @section('page-title', 'Products') @section('content')
| ID | Product Name | Gym | Category | SKU | Price | Stock | Status | Action |
|---|---|---|---|---|---|---|---|---|
| #{{ str_pad($product->id, 6, '0', STR_PAD_LEFT) }} |
@if($product->image)
{{ $product->name }}{{ $product->description ?? 'No description' }} |
{{ $product->gym->name ?? 'N/A' }} | {{ $product->category ?? 'N/A' }} | {{ $product->sku ?? 'N/A' }} | Rs {{ number_format($product->price, 2) }} | @if($product->isLowStock()) {{ $product->stock_quantity }} @else {{ $product->stock_quantity }} @endif | @if($product->is_active) Active @else Inactive @endif | |
| No products found. Add your first product | ||||||||