@extends('layouts.dashboard.superadminapp') @section('title', 'RFQ Details') @section('content')

RFQ Details

Back
RFQ No:
{{ $rfq->rfq_no }}
RFQ Date:
{{ $rfq->rfq_date }}
Vendor:
{{ $rfq->customerInfo->company ?? '-' }}
Vendor Ref No:
{{ $rfq->vendor_reference_no }}
RFQ Type:
{{ $rfq->rfq_type }}
Description:
{{ $rfq->description }}
Delivery Terms:
{{ $rfq->delivery_terms }}
Quantity:
{{ $rfq->quantity }}
UOM:
{{ $rfq->uom }}
Status:
{{ ucfirst($rfq->status ?? '-') }}
Note:
{{ $rfq->note }}

Attachments
@foreach (['drawing' => 'Drawing File', 'material_spec' => 'Material Specification', 'rfq_form' => 'RFQ Form', 'annexure' => 'Annexure'] as $type => $label) @php $files = $rfq->rfqFiles->where('file_type', $type); @endphp @if ($files->count())
{{ $label }}:
@foreach ($files as $file) View {{ $file->file_name }} @endforeach
@endif @endforeach

RFQ Item Details
@if ($rfq->items->count())
@foreach ($rfq->items as $index => $item) @endforeach
# Item Description Quantity UOM Required By
{{ $index + 1 }} {{ $item->stockItem->item_name ?? '-' }} {{ $item->description ?? '-' }} {{ $item->quantity ?? '-' }} {{ $item->uom ?? '-' }} {{ $item->required_by ?? '-' }}
@else

No items added to this RFQ.

@endif
@endsection