@extends('layouts.app') @section('title', 'Trial Balance') @section('content')
| Code | Account Name | Type | Total Debit | Total Credit | Balance |
|---|---|---|---|---|---|
| {{ $acct['account_code'] }} | {{ $acct['account_name'] }} | {{ ucfirst($acct['account_type']) }} | ৳ {{ number_format($d, 2) }} | ৳ {{ number_format($c, 2) }} | ৳ {{ number_format(abs($balance), 2) }} {{ $balance < 0 ? 'Cr' : 'Dr' }} |
| No transactions found. | |||||