@extends('layouts.app') @section('title', 'Journal Report') @section('breadcrumb')
All posted accounting transactions shown as journal entries
| Trans # | Type | Date | Num | Name | Memo | Account | Debit | Credit |
|---|---|---|---|---|---|---|---|---|
| {{ $isFirst ? $voucherId : '' }} | @if($isFirst && $voucher) {{ $voucher->getTypeLabel() }} @endif | {{ $isFirst ? $entry->entry_date->format('d-m-Y') : '' }} | @if($isFirst && $voucher) {{ $voucher->voucher_number }} @endif | {{ $isFirst ? ($entry->journal_party_name ?: '') : '' }} | {{ $entry->narration ?: ($voucher?->narration ?? '') }} |
{{ $entry->account?->name ?? '—' }}
@if($entry->account?->code) {{ $entry->account->code }} @endif
|
{{ $fmt($entry->debit) }} | {{ $fmt($entry->credit) }} |
| No posted journal transactions found for this period. | ||||||||
| TOTAL | {{ \App\Helpers\NumberHelper::formatAmount((float) $totals['debit'], $companyId) }} | {{ \App\Helpers\NumberHelper::formatAmount((float) $totals['credit'], $companyId) }} | ||||||