@extends('layouts.app') @section('title','Manual Journal') @section('page_title','Manual Journal Voucher') @section('content') @php $__journalLines = old('lines', $voucher->lines->map(fn($l) => [ 'account_id' => $l->account_id, 'party_id' => $l->party_id, 'party_ledger' => $l->party_ledger, 'description' => $l->description, 'debit' => $l->debit, 'credit' => $l->credit, ])->values()->all()); @endphp

{{ $voucher->exists?'Edit':'Create' }} Manual Journal

Server validation rejects unbalanced lines and locked accounting periods.

Back
@csrf @if($voucher->exists)@method('put')@endif
Journal Lines
AccountPartyLedgerDescriptionDebitCredit
Debit Total0.00
Credit Total0.00
Difference0.00
@endsection @push('scripts')@endpush