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

Live Buy Leads

Connect with verified buyers actively looking for products. Quote now to grow your business!

{{ $rfqs->total() }}

Active Leads

{{ $categories->count() }}

Categories
Filter Buy Leads
@if(isset($countries) && count($countries) > 0)
@endif
@if(request()->hasAny(['q', 'category', 'location', 'country', 'sort'])) Clear All Filters @endif
Looking for Products?

Post your requirement and let sellers find you!

Post Requirement

@if(request('category')) {{ request('category') }} Requirements @else All Buy Requirements @endif

{{ $rfqs->total() }} Verified Leads Found
@forelse($rfqs as $rfq) @php $daysOld = $rfq->created_at->diffInDays(now()); if ($daysOld <= 1) { $urgencyClass = 'urgency-high'; $urgencyLabel = 'Urgent'; $urgencyBadge = 'bg-danger'; } elseif ($daysOld <= 3) { $urgencyClass = 'urgency-medium'; $urgencyLabel = 'Active'; $urgencyBadge = 'bg-warning text-dark'; } else { $urgencyClass = 'urgency-low'; $urgencyLabel = 'Open'; $urgencyBadge = 'bg-success'; } // Check subscription status $isPaidSeller = false; if (auth()->check() && auth()->user()->hasRole('seller')) { if (auth()->user()->seller && auth()->user()->seller->hasActiveSubscription()) { $isPaidSeller = true; } } // Mask contact details $processedDescription = $rfq->description; if (!$isPaidSeller) { // Mask Phone Numbers (10-12 digits, optional +, -, space) $processedDescription = preg_replace('/(\+?\d{1,4}[-.\s]?)?(\(?\d{3}\)?[-.\s]?)?\d{3}[-.\s]?\d{4}/', '[Locked]', $processedDescription); // Mask Emails $processedDescription = preg_replace('/[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}/', '[Locked]', $processedDescription); } @endphp
{{ $rfq->title }}
{{ $urgencyLabel }} {{ $rfq->created_at->diffForHumans() }}
@if($daysOld == 0) NEW @endif
{{ $rfq->category?->name ?? 'General' }}

{{ Str::limit($processedDescription, 120) }}

Buyer {{ $rfq->buyer?->user?->name ?? 'Verified Buyer' }}
@if($rfq->delivery_location)
Delivery: {{ $rfq->delivery_location }}
@endif
@empty
No Buy Leads Found

Try adjusting your filters or check back later for new requirements.

View All Leads
@endforelse
{{ $rfqs->appends(request()->query())->links() }}
Post Your Requirement
@endsection