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 }}
Status:{{ ucfirst($rfq->status ?? '-') }}
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())
@endif
@endforeach
RFQ Item Details
@if ($rfq->items->count())
| # |
Item |
Description |
Quantity |
UOM |
Required By |
@foreach ($rfq->items as $index => $item)
| {{ $index + 1 }} |
{{ $item->stockItem->item_name ?? '-' }} |
{{ $item->description ?? '-' }} |
{{ $item->quantity ?? '-' }} |
{{ $item->uom ?? '-' }} |
{{ $item->required_by ?? '-' }} |
@endforeach
@else
No items added to this RFQ.
@endif