@csrf
Quotation

Content for Quotation.

@php($quotationCount = 1) @php($quotationStatus = 0) @if($customerQuotations) @if($customerQuotations->status) @php($quotationStatus = 1) @endif @endif @if($quotationStatus == 0)
No Quotation found
@elseif($quotationStatus == 1) @if(isset($customerQuotations->quotations)) @foreach($customerQuotations->quotations as $customerQuotation)
Date {{$customerQuotation->quotation_date}} Quotation No {{$customerQuotation->quotation_no}} Location {{$customerQuotation->location}} Operator {{$customerQuotation->operator}}
@if(isset($customerQuotation->items)) @foreach($customerQuotation->items as $item) @endforeach @else @endif
Type Brand ID Product Qty Unit Price Total Price
{{$item->item_type_name}} {{$item->brand_name}} {{$item->inv_code}} {{$item->item_name}} {{$item->qty}} {{number_format($item->unit_price, 0)}} {{number_format($item->total_price, 0)}}
No quotation found
@endforeach @endif @endif