@extends('layouts.dashboard.superadminapp') @section('title', 'RFQ Details') @section('content')
{{ $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 ?? '-' }}
No attachments available.
| # | Item | Description | Quantity | UOM | Required By |
|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $item->stockItem->item_name ?? '-' }} | {{ $item->description ?? '-' }} | {{ $item->quantity ?? '-' }} | {{ $item->uom ?? '-' }} | {{ $item->required_by ?? '-' }} |
No items added to this RFQ.
@endif