Total Budget
{{ number_format($totalBudget ?? 0) }}
Annual budget allocation
Total Spent
{{ number_format($totalSpent ?? 0) }}
Year-to-date expenses
Remaining
{{ number_format($totalRemaining ?? 0) }}
Available to spend
Utilization
{{ $utilization ?? 0 }}%
Filter Budgets
FISCAL YEAR
PERIOD
ACCOUNT
Budget List
| Account | Fiscal Year | Period | Budget Amount | Actual Spent | Remaining | Utilization | Status | Actions |
|---|---|---|---|---|---|---|---|---|
|
{{ $budget->account->code }}
{{ Str::limit($budget->account->name, 20) }}
|
{{ $budget->fiscal_year }} | {{ ucfirst($budget->period) }} | {{ number_format($budget->amount) }} | {{ number_format($budget->spent_amount) }} | {{ number_format($budget->remaining_amount) }} |
|
@php $status = $budget->status; $statusClass = is_array($status) ? ($status['class'] ?? 'info') : 'info'; $statusText = is_array($status) ? ($status['text'] ?? 'Unknown') : 'Unknown'; @endphp {{ $statusText }} |
|
|
No budgets found. Create your first budget to get started. |
||||||||