@extends('layouts.app') @section('title', 'Transaction Detail') @section('page-title', 'Transaction Detail') @section('content')
| Account | {{ $transaction->account->name }} |
| Category | {{ $transaction->category }} |
| Amount | {{ $transaction->type === 'income' ? '+' : '−' }}${{ number_format($transaction->amount, 2) }} |
| Date | {{ $transaction->transaction_date->format('d F Y') }} |
| Reference No. | {{ $transaction->reference_no ?? '—' }} |
| Description | {{ $transaction->description ?? '—' }} |
| Recorded By | {{ $transaction->user->name ?? '—' }} |
| Reconciled | @if($transaction->is_reconciled) Yes @else Not yet reconciled @endif |
| Notes | {{ $transaction->notes }} |