@extends('layouts.buyer') @section('title', 'RFQ Details') @section('buyer-content')
Requirement Information
{{ ucfirst($rfq->status) }}

{{ $rfq->title }}

Description

{{ $rfq->description }}

Category {{ $rfq->category->name ?? $rfq->category }}
Delivery Location {{ $rfq->delivery_location }}
Posted Date {{ $rfq->created_at->format('d M Y') }}
Received Quotes
{{ $rfq->quotes->count() }} Quotes
@forelse($rfq->quotes as $quote)
@if($quote->seller && $quote->seller->logo) @else
{{ strtoupper(substr($quote->seller->company_name ?? 'S', 0, 1)) }}
@endif
{{ $quote->seller->company_name ?? 'Seller' }} @if($quote->seller && $quote->seller->isPaid()) @endif
{{ $quote->created_at->diffForHumans() }}
₹{{ number_format($quote->revised_price ?? $quote->price, 0) }}
Quoted Price
{!! $quote->status_badge !!}
@empty
No Quotes Yet

We have notified relevant suppliers. Quotes will appear here.

@endforelse
What happens next?
  • Suppliers review your requirement.
  • Interested suppliers send quotes.
  • You review quotes and chat with sellers.
  • Accept the best quote to proceed.
Quick Actions
@if($rfq->status == 'open') @endif Post Similar Requirement
@endsection