@extends('layouts.dashboard.superadminapp')
@section('title', 'RFQ List')
@section('content')
UEPL | RFQ List
day,
00
month
0000
| RFQ ID |
RFQ Date |
Customer |
RFQ Type |
Product Type |
Part No |
Quantity |
UOM |
Status |
Actions |
@foreach ($rfqs as $rfq)
| {{ $rfq->rfq_no }} |
{{ $rfq->rfq_date }} |
{{ $rfq->customerInfo ? $rfq->customerInfo->company : '-' }} |
{{ $rfq->rfq_type }} |
{{ $rfq->product_type }} |
{{ $rfq->part_no }} |
{{ $rfq->quantity }} |
{{ $rfq->uom }} |
{{ ucfirst($rfq->status) }}
|
@if ($rfq->status === 'pending')
@endif
|
@endforeach
@endsection
@section('scripts')
@endsection