@extends('layouts.admin') @section('title', 'Budgets') @section('page-title', 'Budgets') @section('page-subtitle', 'Manage church budgets') @section('content')

Set Budget for {{ now()->year }}

@csrf
@forelse($budgets as $budget) @empty @endforelse
Category Budget (GH₵) Spent (GH₵) Remaining (GH₵) Progress
{{ $budget->category?->name ?? 'N/A' }} GH₵{{ number_format($budget->budget_amount, 2) }} GH₵{{ number_format($budget->spent_amount ?? 0, 2) }} GH₵{{ number_format($budget->remaining_amount ?? 0, 2) }}
{{ $budget->percentage_spent }}%

No budgets set for this year

@endsection