BANK TRANSACTIONS
Current Balance: ₹ {{ number_format($balance,2) }}
Transactions
| ID | Cheque No | Payee | Amount | Status | Balance After | Action |
|---|---|---|---|---|---|---|
| {{ $t->id }} | {{ $t->cheque_no }} | {{ $t->payee_name }} | ₹ {{ number_format($t->amount,2) }} | @if($t->status == 'Pending') Pending @else Cleared @endif | {{ $t->balance_after }} | @if($t->status == 'Pending') Clear @endif |