@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
{{ $rfq->title }}
{{ $rfq->description }}
Verified Member since {{ $rfq->buyer?->created_at?->format('M Y') ?? 'N/A' }}
Send your best offer to the buyer. Make it competitive!
Please login as a seller to view contact details and submit quotes.