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

Journal entries

Balanced double-entry postings from every operational module.

Manual journal
@forelse($journals as $j)@empty@endforelse
JournalDateReferenceDescriptionDebitCreditStatusPosted by
{{ $j->journal_no }}{{ $j->entry_date->format('d M Y') }}{{ $j->reference_number?:ucfirst($j->reference_type) }}{{ $j->description }}{{ number_format((float)$j->total_debit,2) }}{{ number_format((float)$j->total_credit,2) }}{{ strtoupper($j->status) }}{{ $j->createdBy?->name }}
No journals posted.
@if($journals->hasPages())
{{ $journals->links() }}
@endif
@endsection