@extends('layouts.app') @section('title', 'My Products') @section('content')
Manage your product listings
| Product | SKU | Category | Price | Stock | Status | Actions |
|---|---|---|---|---|---|---|
|
@if($product->image_url)
📦
@endif
{{ Str::limit($product->name, 40) }} @if($product->is_featured) Featured @endif |
{{ $product->sku }} | {{ $product->category?->name ?? '-' }} | R {{ number_format($product->price, 2) }} | @if($product->stock_quantity > 10) {{ $product->stock_quantity }} @elseif($product->stock_quantity > 0) {{ $product->stock_quantity }} @else 0 @endif | {{ $product->is_active ? 'Active' : 'Inactive' }} |