@extends('components.app-layout') @section('title', 'Finance Transactions') @section('subtitle', 'Manage all income and expense transactions') @section('content')
View and manage all financial transactions
| Transaction | Category | Amount | Date | Status | Actions |
|---|---|---|---|---|---|
|
{{ $transaction->title }}
{{ $transaction->reference_number }}
|
{{ $transaction->category->name }} |
{{ $transaction->type === 'income' ? '+' : '-' }}GHS {{ number_format($transaction->amount, 2) }}
|
{{ $transaction->transaction_date->format('M d, Y') }} | {!! $transaction->status_badge !!} | |
|
No transactions found Start by adding your first transaction |
|||||