@extends('layouts.app') @section('title', 'Trial Balance') @section('breadcrumb')
Opening balance, current period movement, and closing balance
| Account No. | Account Name | Opening Balance | Current Period | Closing Balance | |||
|---|---|---|---|---|---|---|---|
| Debit | Credit | Debit | Credit | Debit | Credit | ||
{{ $row->code ?: '—' }} |
{{ $row->name }}
{{ ucfirst($row->type) }}
|
{{ $fmt($row->opening_debit) }} | {{ $fmt($row->opening_credit) }} | {{ $fmt($row->period_debit) }} | {{ $fmt($row->period_credit) }} | {{ $fmt($row->closing_debit) }} | {{ $fmt($row->closing_credit) }} |
| No ledger balances found for the selected period. | |||||||
| Total | {{ $fmt($totals['opening_debit']) }} | {{ $fmt($totals['opening_credit']) }} | {{ $fmt($totals['period_debit']) }} | {{ $fmt($totals['period_credit']) }} | {{ $fmt($totals['closing_debit']) }} | {{ $fmt($totals['closing_credit']) }} | |