@extends('layouts.app') @section('title','Journal Entries') @section('page_title','Journal Entries') @section('content')

Journal Entries

Every posted financial document creates a balanced and immutable journal.

+ Manual Journal
@if($drafts->isNotEmpty())
Manual Journals Awaiting Action
@foreach($drafts as $v)@php($s=$v->status instanceof \App\Enums\DocumentStatus?$v->status->value:$v->status)@endforeach
VoucherDateDescriptionDebitStatus
{{ $v->voucher_number }}{{ $v->posting_date->format('d M Y') }}{{ $v->description }}{{ number_format((float)$v->debit_total,2) }}{{ ucwords(str_replace('_',' ',$s)) }}Open
@endif
@forelse($journals as $j)@empty@endforelse
JournalPosting DateSourceReferenceDescriptionDebitCredit
{{ $j->journal_number }}{{ $j->posting_date->format('d M Y') }}{{ ucwords(str_replace('_',' ',$j->source_module)) }}{{ $j->reference_number }}{{ $j->description }}{{ number_format((float)$j->debit_total,2) }}{{ number_format((float)$j->credit_total,2) }}Open
No journals found.
{{ $journals->links() }}
@endsection