@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)
All Products
{{ $products->total() }}
Sort by
@forelse($products as $product) @php $seller = $product->seller; $subscription = $seller->subscription ?? null; $plan = $subscription?->plan ?? null; $isPremium = $plan && $plan->is_featured; $hasVerifiedBadge = $plan && $plan->has_verified_badge; @endphp
{{ $product->name }} @if($product->isPromoted()) {{ $product->promotion->package->badge_text }} @endif
{{ $product->name }} @if($isPremium) @endif
Category: {{ $product->category->name ?? 'Industrial' }}
Platform MOQ Range: {{ \App\Models\Setting::getValue('min_moq', 10) }} - {{ \App\Models\Setting::getValue('max_moq', 150) }}
Product MOQ: {{ $product->moq ?? 1 }} {{ $product->unit->name ?? 'Pieces' }}
Price:

{{ $product->currency == 'USD' ? '$' : '₹' }}{{ number_format($product->price, 0) }}

per Piece
(Tax & Shipping Extra)
View More
@if($seller->is_verified || in_array($seller->kyc_status, ['submitted', 'verified'])) @else @endif @if($isPremium) @endif
@empty

No products found

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

Browse All Products
@endforelse {{-- End gridView wrapper --}}
{{ $products->links() }}
@else

No products found

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

Browse All Products
@endif
@if(isset($promotedProducts) && $promotedProducts->count() > 0)
Sponsored
Premium Selections
@endif
@foreach($products as $product) @php $seller = $product->seller; @endphp @endforeach @endsection