@extends('layouts.app') @section('content')
| Date | Description | Reference | Branch | Debit | Credit | Balance |
|---|---|---|---|---|---|---|
| {{ \Carbon\Carbon::parse($transaction->journal->transaction_date)->format('d/m/Y') }} | {{ $transaction->journal->description }} | {{ $transaction->journal->reference }} | {{ $transaction->journal->branch->branch_name ?? 'N/A' }} | {{ number_format($transaction->debit, 2) }} | {{ number_format($transaction->credit, 2) }} | {{ number_format($runningBalance, 2) }} |
| Totals: | {{ number_format($totalDebit, 2) }} | {{ number_format($totalCredit, 2) }} | {{ number_format($netBalance, 2) }} | |||
Try adjusting your filters or check if there are any transactions in the selected period.