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

UEPL | RFQ Details

day, 00 month 0000
RFQ Details
Back

{{ $rfq->rfq_no }}

{{ $rfq->rfq_date }}

{{ $rfq->customerInfo->company ?? '-' }}

{{ $rfq->vendor_reference_no ?? '-' }}

{{ $rfq->rfq_type ?? '-' }}

{{ ucfirst($rfq->status ?? 'pending') }}

{{ $rfq->delivery_terms ?? '-' }}

{{ $rfq->description ?? '-' }}

{{ $rfq->note ?? '-' }}


Attachments
@php $hasFiles = false; @endphp @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()) @php $hasFiles = true; @endphp
@foreach ($files as $file) {{ $file->file_name }} @endforeach
@endif @endforeach @if (!$hasFiles)

No attachments available.

@endif

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