@extends('layouts.master') @section('title', $category->name . ' - The Mini Port') @section('content')

{{ $category->name }}

{{ $category->products_count }} Products
KYC Submitted Suppliers
@if($category->children->count() > 0)
Sub Categories:
@foreach($category->children as $child) {{ $child->name }} @endforeach
@endif

Browse premium products in {{ $category->name }}

About Category

Browse the best {{ $category->name }} products. Connect directly with manufacturers and suppliers to get the best quotes.

Post Requirement
Filters
@if(request()->hasAny(['min_price', 'max_price', 'min_moq', 'max_moq', 'location', 'verified'])) Clear @endif
Price Range (₹)
-

MOQ Range
-
Min Order Quantity (10-150)

Location

Supplier Type
@if($products->count() > 0)

Showing {{ $products->firstItem() }}-{{ $products->lastItem() }} of {{ $products->total() }} results

{{-- View Toggle --}}
{{-- TradeIndia Style List View (Default) --}}
@foreach($products as $product) @include('public.products.partials.tradeindia-card', ['product' => $product]) @endforeach
{{-- Grid View (Hidden by default) --}} {{-- End gridView wrapper --}}
{{ $products->links() }}
{{-- View Toggle Script --}} @else

No products found

We couldn't find any products in this category yet.

Browse All Products
@endif
@endsection