@extends('layouts.seller') @section('title', 'Buy Leads (RFQs)') @section('content')
Total RFQs
{{ $rfqs->total() }}
New Today
{{ \App\Models\Rfq::whereDate('created_at', today())->count() }}
Pending
{{ $rfqs->where('status', 'pending')->count() }}
Plan Limit
Unlimited
@forelse($rfqs as $rfq) @empty @endforelse
RFQ Details Quantity Location Date Action
{{ $rfq->product_name }} {{ $rfq->description }} {{ $rfq->quantity }} {{ $rfq->unit }} {{ $rfq->location ?? 'India' }} {{ $rfq->created_at->format('M d, Y') }}
No RFQs found.
@forelse($rfqs as $rfq)
{{ $rfq->product_name }}
{{ $rfq->created_at->format('d M') }}

{{ $rfq->description }}

{{ $rfq->quantity }} {{ $rfq->unit }}
@empty
No RFQs found.
@endforelse
@if($rfqs->hasPages()) @endif
@foreach($rfqs as $rfq) @endforeach @endsection