@extends('layouts.app') @section('content')
{{ $bankAccount->bank_name }} | {{ $bankAccount->account_number }}
| Date | Description | Reference | Debit | Credit | Status | Actions |
|---|---|---|---|---|---|---|
| {{ date('M d, Y', strtotime($tx->date)) }} |
{{ $tx->description }}
@if($tx->linked_transaction_id)
Linked Transfer
@endif
|
{{ $tx->reference_number ?: '-' }} | {{ $tx->type === 'debit' ? formatCurrency($tx->amount) : '-' }} | {{ $tx->type === 'credit' ? formatCurrency($tx->amount) : '-' }} | {{ ucfirst($tx->status) }} | @if($tx->status !== 'reconciled') @endif |
|
No transactions found for this account. |
||||||