@extends('layouts.admin') @section('title', 'Product Management') @section('content')

Product Catalog Management

Manage store products, prices, variants, inventory, and visibility.

Add Product
@if($search || $category_id) Clear @endif
@if($products->isEmpty())
No products found matching your filter criteria.
@else
@foreach($products as $prod) @endforeach
Image Product Name & Tag Category Price (₹) Stock Badge Status Actions
@if($prod->image) {{ $prod->name }} @else @endif
{{ $prod->name }}
{{ $prod->tag ?? 'No tagline' }}
{{ $prod->category->name ?? 'Unassigned' }} ₹{{ number_format($prod->price, 2) }} @if($prod->compare_at)
₹{{ number_format($prod->compare_at, 2) }}
@endif
{{ $prod->stock }} units @if($prod->badge) {{ $prod->badge }} @else @endif
@csrf
View Edit
@csrf @method('DELETE')
{{ $products->links() }}
@endif
@endsection