@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(request()->hasAny(['q', 'category', 'location', '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'; } @endphp
{{ $rfq->title }}
{{ $urgencyLabel }} {{ $rfq->created_at->diffForHumans() }}
@if($daysOld == 0) NEW @endif
Qty: {{ $rfq->quantity ?? 'N/A' }} {{ $rfq->category?->name ?? 'General' }}

{{ Str::limit($rfq->description, 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