Finance Portal

Budget management, financial tracking, and performance metrics

Total Budget

₦{{ number_format($totalBudget / 1000000000, 1) }}B

Allocated

₦{{ number_format($allocated / 1000000000, 1) }}B

Disbursed

₦{{ number_format($disbursed / 1000000000, 1) }}B

Remaining

₦{{ number_format($remaining / 1000000000, 1) }}B

Utilization

{{ $utilization }}%

Budget Allocations — FY {{ $year }}

@if ($allocations->isEmpty())

No budget allocations recorded for {{ $year }} yet.

@else @foreach ($allocations as $a) @endforeach
Product Branch Total Budget Allocated Disbursed Utilization
{{ $a->mortgageProduct?->code ?? 'All Products' }} {{ $a->branch ?? 'Head Office' }} ₦{{ number_format($a->total_budget) }} ₦{{ number_format($a->allocated) }} ₦{{ number_format($a->disbursed) }}
{{ $a->utilizationPercent() }}%
@endif