@extends('layouts.master') @section('title', 'Supplier Directory - The Mini Port') @section('content')

KYC Submitted Supplier Directory

Discover trusted manufacturers and suppliers across India. Connect directly with KYC submitted businesses.

{{ $suppliers->total() }}

Suppliers

{{ \App\Models\Seller::where('is_verified', true)->orWhereIn('kyc_status', ['submitted', 'verified'])->count() }}

KYC Submitted
Filter Suppliers
-
Min Order Quantity (10-150)
-
@if(request()->hasAny(['q', 'location', 'category', 'verified'])) Clear Filters @endif
Are You a Supplier?

List your business and reach thousands of buyers!

Register Now
@php $sidebarBanners = \App\Models\Banner::where('position', 'supplier_sidebar')->where('active', true)->get(); @endphp @if($sidebarBanners->count() > 0) @else
Ad Space
@endif

@if(request('location')) Suppliers in {{ request('location') }} @else All Suppliers @endif

{{ $suppliers->total() }} Suppliers Found
@forelse($suppliers as $supplier)
@if($supplier->banners->first() || $supplier->banner) Cover @else
@endif
@if($supplier->is_verified || in_array($supplier->kyc_status, ['submitted', 'verified'])) KYC Submitted @else KYC Pending @endif
@if($supplier->logo) @else @endif
{{ $supplier->company_name }}

{{ is_array($supplier->city) ? ($supplier->city[0] ?? 'N/A') : ($supplier->city ?? 'N/A') }}, {{ is_array($supplier->state) ? ($supplier->state[0] ?? '') : ($supplier->state ?? '') }}

{{ is_array($supplier->business_type) ? implode(', ', $supplier->business_type) : ($supplier->business_type ?? 'Manufacturer') }} @if($supplier->category) {{ $supplier->category->name ?? '' }} @endif
@if($supplier->products->count() > 0) @endif
{{ $supplier->products->count() }} Products Since {{ $supplier->created_at->format('Y') }}
@if($loop->iteration == 3)
@php $middleBanners = \App\Models\Banner::where('position', 'supplier_middle')->where('active', true)->get(); @endphp @if($middleBanners->count() > 0) @else Ad Space @endif
@endif @empty
No Suppliers Found

Try adjusting your filters or check back later.

View All Suppliers
@endforelse
{{ $suppliers->appends(request()->query())->links() }}
Filter Suppliers
Clear All
@endsection