| {{ $accountData['account_code'] ?? '-' }} |
{{ $accountData['account_name'] ?? '-' }} |
{{ number_format($accountData['opening_debit'] ?? 0, 2) }} |
{{ number_format($accountData['opening_credit'] ?? 0, 2) }} |
{{ number_format(($accountData['total_debit'] ?? 0) - ($accountData['opening_debit'] ?? 0), 2) }} |
{{ number_format(($accountData['total_credit'] ?? 0) - ($accountData['opening_credit'] ?? 0), 2) }} |
{{ number_format($accountData['closing_debit'] ?? 0, 2) }} |
{{ number_format($accountData['closing_credit'] ?? 0, 2) }} |
@endforeach
| TOTALS |
{{ number_format($data['totals']['opening_debit'] ?? 0, 2) }} |
{{ number_format($data['totals']['opening_credit'] ?? 0, 2) }} |
{{ number_format(($data['totals']['period_debit'] ?? 0) - ($data['totals']['opening_debit'] ?? 0), 2) }} |
{{ number_format(($data['totals']['period_credit'] ?? 0) - ($data['totals']['opening_credit'] ?? 0), 2) }} |
{{ number_format($data['totals']['closing_debit'] ?? 0, 2) }} |
{{ number_format($data['totals']['closing_credit'] ?? 0, 2) }} |