RFQ ID: {{ $rfq->id }}
Product Name: {{ $rfq->defaultProduct->name . ($rfq->palletization == 'US' ? ' - US (40"x48")' : ($rfq->palletization == 'EU/Asia' ? ' - EU/Asia' : ($rfq->palletization == 'EU' ? ' - EU (800mmx1200mm)' : ''))) }}
Processing Type: {{ $rfq->processing_type }}
Product Description: {{ $rfq->description }}
Port {{ $rfq->port_of_unloading ?? 'undefined' }}
Scout: Ismail H.
Created on: {{ $rfq->created_at->format('D-m-y') }}
Proposals
{{ $rfq->offers->count() }} Proposals
@if ($percentage_proposals == 0)N/A vs last
30 days
+{{ number_format($percentage_proposals, 2) }}% vs last 30 days
{{ number_format($percentage_proposals, 2) }}% vs last 30 days
Average Price
{{ number_format($rfq->offers->avg('price_per_kg'), 2) }} {{ $rfq->currency }}
Max price: {{ $rfq->offers->max('price_per_kg') }} vs Min price: {{ $rfq->offers->min('price_per_kg') }}
@if ($percentageChange == 0)N/A vs last
30 days
+{{ number_format($percentageChange, 2) }}% vs last 30 days
{{ number_format($percentageChange, 2) }}% vs last 30 days
Total volume offered
{{ number_format($rfq->offers->sum('volume'), 2) }} {{ $rfq->unit }}
@if ($percentageVolume == 0)N/A vs last
30 days
+{{ number_format($percentageVolume, 2) }}% vs last 30 days
{{ number_format($percentageVolume, 2) }}% vs last 30 days
RFQ Closing Status
{{ $daysRemaining }}
{{ $daysRemaining > 1 ? 'Days' : 'Day' }} @elseif ($daysRemaining == 0)RFQ is set to close today
@elseRFQ has already closed
@endifOffer ID | Port Origin | Volume | Offred Price | Offer Deadline | Counter Price | Status | |
---|---|---|---|---|---|---|---|
{{ $offer->ref_id }} @php $ratingText = isset($sellerRatingsData[$offer->seller_id]) ? ' Financial Stability: ' . $sellerRatingsData[$offer->seller_id]['financial_stability'] . ' | Activity on Platform: ' . $sellerRatingsData[$offer->seller_id]['activity_on_platform'] . ' | Quality: ' . $sellerRatingsData[$offer->seller_id]['quality'] . ' | Reliability: ' . $sellerRatingsData[$offer->seller_id]['reliability'] . ' | Customer Service: ' . $sellerRatingsData[$offer->seller_id]['customer_service'] : 'No ratings'; @endphp |
{{ $offer->port_origin }} |
{{ number_format($offer->volume, 2) . ' / ' . $offer->rfq->unit }} |
{{ number_format($offer->price_per_kg, 2) . ' / ' . $offer->rfq->currency }} |
{{ $offer->offer_exp_date }} |
{{ $offer->counter_offer ? $offer->counter_offer . ' / ' . $offer->rfq->currency : 'N/A' }} |
@if ($offer->counter_status == 'accepted' && $offer->status == 'countered')
Counter Accepted @elseif($offer->counter_status == 'accepted')Accepted @elseif($offer->counter_status == 'rejected')Rejected @elseif($offer->status == 'countered')Counter @elseif($offer->status == 'accepted')Accepted @elseif($offer->status == null)Proposal @elseif($offer->status == 'canceled')Canceled @elseRejected @endif |