@extends('layouts.master') @section('title', $rfq->title . ' - Buy Leads') @section('content') @php $daysOld = $rfq->created_at->diffInDays(now()); if ($daysOld <= 1) { $urgencyClass = 'bg-danger'; $urgencyLabel = 'Urgent'; $urgencyIcon = 'bi-lightning-fill'; } elseif ($daysOld <= 3) { $urgencyClass = 'bg-warning text-dark'; $urgencyLabel = 'Active'; $urgencyIcon = 'bi-clock-fill'; } else { $urgencyClass = 'bg-success'; $urgencyLabel = 'Open'; $urgencyIcon = 'bi-check-circle-fill'; } @endphp
{{ $urgencyLabel }} {{ $rfq->category ?? 'General' }} @if($daysOld == 0) NEW TODAY @endif

{{ $rfq->title }}

Posted {{ $rfq->created_at->diffForHumans() }} {{ $rfq->created_at->format('d M Y') }} @if($rfq->delivery_location) {{ $rfq->delivery_location }} @endif
Requirement Overview
{{ $rfq->quantity ?? 'N/A' }}
Quantity
{{ $rfq->budget ? '₹' . number_format($rfq->budget) : 'Open' }}
Budget
{{ $rfq->unit ?? 'Units' }}
Unit
{{ $rfq->delivery_location ?? 'India' }}
Delivery
Detailed Description

{{ $rfq->description }}

Buyer Information
{{ strtoupper(substr($rfq->buyer?->user?->name ?? 'B', 0, 1)) }}
{{ $rfq->buyer?->user?->name ?? 'Verified Buyer' }}

Verified Member since {{ $rfq->buyer?->created_at?->format('M Y') ?? 'N/A' }}

@auth @if(auth()->user()->hasRole('seller'))
Company
{{ $rfq->buyer?->company_name ?? 'Not disclosed' }}
Location
{{ $rfq->buyer?->city ?? 'India' }}
@endif @endauth
Tips for Sellers
  • Respond quickly - buyers prefer fast responses
  • Include all costs in your quote (shipping, taxes, etc.)
  • Highlight your unique selling points
  • Provide samples if possible to build trust
Submit Your Quote
@auth @if(auth()->user()->hasRole('seller')) @if($hasQuoted)
Quote Submitted!

You have already quoted on this requirement.

View My Quotes
@else

Send your best offer to the buyer. Make it competitive!

Secure & verified transaction
@endif @else
Buyer Account Detected

Only registered sellers can quote on requirements.

Register as Seller
@endif @else
Login Required

Please login as a seller to view contact details and submit quotes.

@endauth
Share this Lead
@endsection