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

Edit Purchase RFQ

@csrf @method('PUT')
RFQ Information
Vendor Information
Additional Details
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.
Notes & Terms
File Attachments
@php $annexureFiles = $rfq->rfqFiles->where('file_type', 'annexure'); @endphp @if ($annexureFiles && $annexureFiles->count())
@foreach ($annexureFiles as $file) @endforeach
@endif
Back
@endsection @section('scripts') @endsection