@extends('layout.app') @section('title', 'Create Payment Voucher') @push('header_script') @endpush @section('content')
{!! Form::open([ 'route' => 'payment-voucher.store', 'onsubmit' => 'BtnSubmit.disabled = true', 'method' => 'post', 'autocomplete' => 'off', 'files' => true, ]) !!}
{!! Form::select('account_ledger_id', ['' => '--Select--'] + $paymentLedgers, null, [ 'class' => 'form-control select2', 'id' => 'account_ledger_id', 'required', ]) !!} Balance:
{!! Form::select('party_account_ledger_id', ['' => '--Select--'] + $accountLedger, request()->get('party_account_ledger_id'), [ 'class' => 'form-control select2', 'id' => 'party_account_ledger_id', 'required', ]) !!} Balance:

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

Please select a party to view pending bills.

@else @endif {{-- Right Side: Amounts --}}
Payment Details
{{-- Calculation Summary --}}
Total Outflow: ₹ 0.00
Total Allocated: ₹ 0.00
Unallocated Balance: ₹ 0.00
{{-- BOTTOM SECTION: Misc & Submit --}}
{!! Form::close() !!}
@endsection @push('footer_script') @endpush