@extends('layouts.app') @section('content')

Archived RFQs

@foreach ($rfqs as $rfq) @endforeach
Id Name Port Destination Volume Offers Scout Created at Status

{{$rfq->ref_id }}

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

{{$rfq->category->name}}

{{ $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
@endsection