@extends('layouts.layoutapp') @section('content')
@if($type == 'edit')
Edit Estimation
@elseif($type == 'convert')
Convert Estimation
@endif
@csrf
@error('client_num') {{ $message }} @enderror

Product Details:
@foreach($quote->quotesItem as $index => $item) @php $product = $products->firstWhere('id', $item->product_id); $available_qty = $product ? $product->qty : 0; @endphp @endforeach
# Product Avl. Qty Qty Unit Price Amount
{{ $index + 1 }} @if ($branch->inv_desc_flag == 'A') @endif
Sub Total: {{ $quote->sub_total }} ₹
Discount: {{ $quote->discount_amount }} ₹
Total: {{ $quote->total_amount }} ₹

@endsection @push('scripts') @endpush