@extends('layouts.app') @section('title', 'Quotation List') @section('content')

Quotation List

@foreach($rfqs as $key => $rfq) @php $items = $rfqItems[$rfq->id] ?? collect(); @endphp {{-- Serial Number --}} {{-- RFQ Number --}} {{-- PR Number --}} {{-- Products --}} {{-- Status --}} {{-- Action --}} @endforeach
# RFQ Number PR Number Products Status Action
{{ $key + 1 }} {{ $rfq->rfq_number }} {{ $rfq->pr_number }} @if($items->count() > 0) @foreach($items as $itemKey => $item) @endforeach
# Product Qty
{{ $itemKey + 1 }} {{ $item->name }} {{ $item->quantity }}
@else No products found @endif
{{ ucfirst($rfq->status) }}
@endsection @section('js')