@extends('layouts.app') @section('content')
| Date | Account | Description | Debit (-) | Credit (+) | Status | Actions |
|---|---|---|---|---|---|---|
| {{ date('M d, Y', strtotime($transaction->date)) }} | {{ $transaction->account->name }} |
{{ $transaction->description }}
@if ($transaction->linked_transaction_id)
Linked
@endif
|
{{ $transaction->type === 'debit' ? formatCurrency($transaction->amount) : '-' }} | {{ $transaction->type === 'credit' ? formatCurrency($transaction->amount) : '-' }} | {{ ucfirst($transaction->status) }} | @if ($transaction->status !== 'reconciled') @endif |
|
No transactions found. |
||||||