{{ optional($journalEntry->entry_date)->format('F d, Y') }} · {{ ucfirst($journalEntry->status) }}
{{ $journalEntry->description }}
| Detail Lines | |||||
|---|---|---|---|---|---|
| Line | Account | Cost Center | Debit | Credit | Description |
| {{ $detail->line_no ?? ($index + 1) }} | {{ $detail->account?->account_code }} · {{ $detail->account?->account_name }} | {{ $detail->costCenter?->code ? $detail->costCenter->code . ' · ' . $detail->costCenter->name : '—' }} | {{ number_format((float) $detail->debit, 2) }} | {{ number_format((float) $detail->credit, 2) }} | {{ $detail->description ?? '—' }} |
| Totals | {{ number_format((float) $totalDebit, 2) }} | {{ number_format((float) $totalCredit, 2) }} | |||
Journal entries must remain balanced. Debits should equal credits.
{{ $attachment->file_name }}
{{ number_format(($attachment->file_size ?? 0) / 1024, 2) }} KB · {{ $attachment->file_type ?? 'Unknown type' }}