@extends('layouts.app') @section('page-title', 'Products') @section('content')
@forelse($products as $product) @empty @endforelse
ID Product Name Gym Category SKU Price Stock Status Action
#{{ str_pad($product->id, 6, '0', STR_PAD_LEFT) }}
@if($product->image) @endif
{{ $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
@csrf @method('DELETE')
No products found. Add your first product
@endsection @push('scripts') @endpush