@extends('layouts.master') @section('content')
Payment Invoices

Payment Invoices List

{{--

--}} {{--
--}}
@foreach ($payments as $key => $pay) {{-- --}} @endforeach
S.No Inquiry # Quotation # Total Quotation Amount Total Quotation Received Amount Created At Details
{{ $key + 1 }} {{ $pay->inquiry_id }} {{ $pay?->quotation_no }} {{ $pay->total_quotation_amount }} {{ get_payment_details($pay->payment_id) }}{{ get_total_quotation_received_amount($pay->quotation_id) }}{{ $pay->created_at }} @foreach ($payment_invoice_list as $key => $pay_ac) @if ($pay_ac->quotation_id == $pay->quotation_id) {{-- --}} @endif @endforeach
S.No Pay # Type RV Number Received Amount Remaining Amount Status Created At Action
{{ $key + 1 }} {{ $pay_ac->pay_no }} {{ $pay_ac->payment_type }} {{ $pay_ac->recieving_number }} {{ $pay_ac->paid_amount }} {{ $pay_ac->total_quotation_remaining_amount }} @if ($pay_ac->status == 0) Pending @elseif($pay_ac->status == 1) PAYMENT NOT VERIFIED @elseif($pay_ac->status == 2) PAYMENT VERIFIED @endif {{ get_total_quotation_received_amount($pay->quotation_id) }}{{ $pay_ac->created_at }}
S.No Pay # Type RV Number Received Amount Remaining Amount Status Created At Action
S.No Inquiry # Quotation # Total Quotation Amount Total Quotation Received Amount Created At Details
{{--
--}} {{-- All Quotes Start Modal --}} @include('quotations.modals.modals') {{-- All Quotes End Modal --}} @endsection @push('scripts') @endpush