@php $quotation = \App\Models\Quotation::find(request()->route('id')); $quotationItem = \App\Models\QuotationItem::where('quotation_id', $quotation->id) ->where('revision', 'like', '%REV%') ->orderBy('created_at', 'desc')->first(); $quotationItemLists = \App\Models\QuotationItemList::where('quotation_id', $quotation->id)->where('quotation_item_id', $quotationItem->id)->orderBy('id', 'asc')->get(); $isTotal = true; $totalAmount = 0; @endphp