@extends('layouts.admin') @section('title', 'Footwear Inventory & Products') @section('content')

All Footwear Products ({{ $products->total() }})

Manage catalog prices, discounts, image galleries, and inventory stock levels.

@forelse($products as $product) @php($img = $product->primaryImage()) @empty @endforelse
Image Product Name Category MRP Selling Price Discount Stock Status Actions
@if($img)@else
👟
@endif
{{ $product->name }} @if($product->brand) {{ $product->brand }} @endif {{ $product->category->name ?? '-' }} ₹{{ number_format($product->original_price, 2) }} ₹{{ number_format($product->price, 2) }} {{ $product->discount_percent }}% OFF @if($product->stock <= 10) 🔥 {{ $product->stock }} left @else {{ $product->stock }} @endif {{ $product->is_active ? 'Active' : 'Hidden' }} Edit
@csrf @method('DELETE')
No products found.
{{ $products->links() }}
@endsection