@extends('layouts.admin') @section('title', 'General Ledger') @section('content')
View detailed transactions for any account.
| Date | Description | Reference | Debit | Credit | Running Balance |
|---|---|---|---|---|---|
| {{ $transaction->journalEntry->entry_date->format('M d, Y') }} | {{ $transaction->journalEntry->description }} | {{ $transaction->journalEntry->reference }} | {{ $transaction->type == 'debit' ? 'Rs. ' . number_format($transaction->amount, 2) : '-' }} | {{ $transaction->type == 'credit' ? 'Rs. ' . number_format($transaction->amount, 2) : '-' }} | Rs. {{ number_format($runningBalance, 2) }} |
| No transactions found for this account. | |||||
Please select an account to view its ledger.