| Account Key | Account Name | Debit | Credit |
|---|---|---|---|
| {{ $g->type }} ({{ count($g->items) }} accounts) | |||
| {{ $key }} | {{ $name }} | {{ number_format($debit, 2) }} | {{ number_format($credit, 2) }} |
| Subtotal ({{ $g->type }}) | {{ number_format((float)$g->total_debit, 2) }} | {{ number_format((float)$g->total_credit, 2) }} | |
| No data found. | |||
| Grand Total | {{ number_format((float)($totals['debit'] ?? 0), 2) }} | {{ number_format((float)($totals['credit'] ?? 0), 2) }} | |
| Difference (Debit - Credit) | @php $diff = (float)($totals['diff'] ?? 0); @endphp{{ number_format($diff, 2) }} | ||