@extends('layouts.app') @section('content')
@if (auth()->user()->status == 'Accepted') @elseif(auth()->user()->status == 'Rejected')

You are Rejected, Contact Us for more informations

@else

Waiting for acceptation to post Rfqs.

@endif
Total Revenue
{{ number_format($currentRevenue, 2) }} USD
Active Request for Quotes
{{ $activeRfqs }} RFQ’s
Closed Deals
{{ $closedDeals }} Deals
@foreach ($items as $rfq) @endforeach
Id Name Port Destination Volume Offers Scout Created at Status

{{ $rfq->ref_id }}

{{ $rfq->defaultProduct->name }}

{{ $rfq->processing_type }}

{{ $rfq->port_of_unloading ?? 'undefined' }}

{{ number_format($rfq->quantity, 2) . ' ' . $rfq->unit ?? 'undefined' }}

{{ $rfq->offers->count() }}

profile

Natalie

{{ $rfq->created_at->format('d-M-y') }}

@if ($rfq->status == '1')

New

@elseif ($rfq->status == '2')

Proposals

@elseif ($rfq->status == '0')

Closed

@else

Canceled

@endif
dots
{{ $rfqs->onEachSide(1)->withQueryString()->links('pagination::bootstrap-4') }}
@endsection