@extends('layouts.buyer') @section('title', 'Quote Requests') @section('buyer-content')
Total Quotes

{{ $stats['total'] }}

Pending Review

{{ $stats['pending'] }}

Accepted

{{ $stats['accepted'] }}

Rejected

{{ $stats['rejected'] }}

All Received Quotes
@forelse($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->rfq->title ?? 'N/A' }}
₹{{ number_format($quote->revised_price ?? $quote->price, 0) }}
Quoted Price
{{ $quote->delivery_timeline }}
Delivery
{!! $quote->status_badge !!}
{{ $quote->created_at->format('d M') }}
@empty
No Quotes Received Yet

Post a buying requirement to start receiving quotes from verified suppliers.

Post Your First Requirement
@endforelse @if($quotes->hasPages())
{{ $quotes->links() }}
@endif
@endsection