@extends('layouts.app') @section('title', 'Budgets') @section('breadcrumbs') @endsection @section('content')
Compare budgeted amounts with actual spending
| Department / Category | Budget | Actual | Variance | Utilization | Progress |
|---|---|---|---|---|---|
| {{ $b->category ?? 'N/A' }} | ₹{{ number_format($b->budget ?? 0, 2) }} | ₹{{ number_format($b->actual ?? 0, 2) }} | ₹{{ number_format($var, 2) }} | {{ number_format($util, 1) }}% | |
No budget data | |||||