@extends('components.app-layout') @section('title', 'Finance Dashboard') @section('subtitle', 'Manage church income and expenses') @section('content')

Finance Dashboard

Track church income and expenses

Income This Month

₵{{ number_format($stats['total_income_this_month'], 2) }}

Expenses This Month

₵{{ number_format($stats['total_expense_this_month'], 2) }}

Net Income This Month

₵{{ number_format($stats['net_income_this_month'], 2) }}

Pending Approval

{{ $stats['pending_transactions'] }}

Monthly Overview

Recent Transactions

View All
@forelse($recentTransactions as $transaction)

{{ $transaction->title }}

{{ $transaction->category->name }} • {{ $transaction->transaction_date->format('M d, Y') }}

{{ $transaction->type === 'income' ? '+' : '-' }}₵{{ number_format($transaction->amount, 2) }}

{{ ucfirst($transaction->status) }}
@empty

No transactions yet

Start by adding your first transaction

@endforelse
@push('scripts') @endpush @endsection