@extends('layout.app') @section('title', 'Edit Receipt Voucher') @push('header_script') @endpush @section('content')
Back
{!! Form::open([ 'route' => ['receipt-voucher.update', $receiptVoucher->id], 'onsubmit' => 'BtnSubmit.disabled = true', 'method' => 'put', 'autocomplete' => 'off', 'files' => true, 'id' => 'receiptForm', ]) !!}
{!! Form::select('account_ledger_id', ['' => '--Select--'] + $paymentLedgers, $receiptVoucher->account_ledger_id, [ 'class' => 'form-control select2', 'id' => 'account_ledger_id', 'required', ]) !!} Balance:
{!! Form::select( 'party_account_ledger_id', ['' => '--Select--'] + $accountLedger, $receiptVoucher->party_account_ledger_id, ['class' => 'form-control select2', 'id' => 'party_account_ledger_id', 'required'], ) !!} Balance:

{{-- Left Side: Bills --}} @if ($billByBillEnabled)
Ledger Pending Bills

Loading bills...

@else @endif {{-- Right Side: Amounts --}}
Payment Info
{{-- Calculation Summary --}}
Total Payment: ₹ 0.00
Total Allocated: ₹ 0.00
Balance Remaining: ₹ 0.00
{{-- BOTTOM SECTION: Misc & Submit --}}
@if($receiptVoucher->doc) View Current Doc @endif
{!! Form::close() !!}
@endsection @push('footer_script') @endpush