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

UEPL | Edit Request For Quotation

day, 00 month 0000
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif
Edit Request For Quotation
@csrf @method('PUT')
@php $annexureFiles = $rfq->rfqFiles->where('file_type', 'annexure'); @endphp @if ($annexureFiles && $annexureFiles->count())
@foreach ($annexureFiles as $file) @endforeach
@endif

RFQ Items
@if ($rfq->items && $rfq->items->count()) @foreach ($rfq->items as $index => $item) @endforeach @else @endif
Sl.No Item Description Quantity UOM Required By
{{ $index + 1 }}
No RFQ items found.

Back
@endsection @section('scripts') @endsection