@extends('layouts.app') @section('content')

New Credit Voucher (Receipt)

Back
@if ($errors->any())
Please fix the following errors:
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(session('error'))
{{ session('error') }}
@endif
Credit Voucher: Used for recording money received (receipts). Cash/Bank will be debited, and the selected account will be credited.
@csrf
This account will be CREDITED (e.g., Party, Income, Loan received)
This account will be DEBITED (Cash/Bank increases)

Ledger Entry Preview

Account Debit Credit
Cash/Bank Account Rs. 0.00 -
Selected Account - Rs. 0.00
Cancel
@endsection