@extends('layouts.user') @section('page-title', 'Products') @section('content')

Products

@forelse ($products as $p)
@if ($p->image_path) {{ $p->name }} @else No image @endif
{{ $p->name }}
SKU: {{ $p->sku }} · {{ $p->category->name }}
₹{{ number_format($priceMap[$p->id] ?? $p->default_selling_price, 2) }}
Min order: {{ $p->min_order_quantity }} {{ $p->unit }} · {{ $p->stock_quantity }} available
@csrf
@empty

No products found. Try adjusting your search or filters.

@endforelse
{{ $products->links() }}
@endsection