@extends('layouts.admin') @section('title', 'Footwear Inventory & Products') @section('content')
Manage catalog prices, discounts, image galleries, and inventory stock levels.
| Image | Product Name | Category | MRP | Selling Price | Discount | Stock | Status | Actions |
|---|---|---|---|---|---|---|---|---|
|
@if($img)
👟 @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 |
| No products found. | ||||||||