Financial Reports

Track church income and expenditures

CongreSmart Church Management

Financial Summary Report

Generated on: {{ now()->format('F j, Y, g:i a') }}

{{-- Financial Summary Cards --}}

Total Income

₦{{ number_format($financialStats['total_income'], 2) }}

Total Expenses

₦{{ number_format($financialStats['total_expenses'], 2) }}

Net Balance

₦{{ number_format(abs($financialStats['net_balance']), 2) }}

This Month

₦{{ number_format($financialStats['this_month_income'], 2) }}

{{-- Category Breakdown --}}

Category Breakdown

@if(count($categoryBreakdown) > 0)
@foreach($categoryBreakdown as $category)
{{ $category['name'] }}
{{ ucfirst($category['type']) }}
₦{{ number_format($category['total'], 2) }}
@endforeach
@else

No financial data available

Start recording contributions to see financial reports.

@endif
{{-- Recent Contributions --}}

Recent Contributions

@if(count($contributions) > 0)
@foreach($contributions as $contribution) @endforeach
Date Member Category Type Amount
{{ $contribution->date?->format('M j, Y') ?? 'N/A' }}
{{ $contribution->member?->first_name }} {{ $contribution->member?->last_name }}
{{ $contribution->category?->name }} {{ ucfirst($contribution->category?->category_type ?? 'unknown') }} ₦{{ number_format($contribution->amount, 2) }}
@else

No contributions found

Start recording contributions in the Finance section to see financial reports.

@endif