Browse Products

Discover quality products from our verified suppliers

@if($products->count() > 0)
@foreach($products as $product)

{{ $product->product_name }}

{{ $product->supplier->business_name }}

{{ $product->category->name ?? 'Uncategorized' }}

₹{{ number_format($product->price_per_unit, 2) }} per {{ $product->unit }}
{{ number_format($product->available_quantity) }} {{ $product->unit }} available @if($product->available_quantity <= $product->minimum_order_quantity && $product->available_quantity > 0) Low Stock @elseif($product->available_quantity <= 0) Out of Stock @endif

Min Order: {{ number_format($product->minimum_order_quantity) }} {{ $product->unit }}

@if($product->available_quantity > 0)
@csrf
@else @endif View Details
@endforeach
{{ $products->links() }}
@else

No Products Found

We couldn't find any products matching your criteria.

View All Products
@endif