Period: {{ \Carbon\Carbon::parse($start_date)->format('M j, Y') }} to {{ \Carbon\Carbon::parse($end_date)->format('M j, Y') }}
Budget: {{ $budget->name }} • As of: {{ $as_of_date }}
| Account | Budget Amount | Actual Amount | Variance | Variance % |
|---|
| Account | Budget Amount | Actual Amount | Variance | Variance % |
|---|---|---|---|---|
| {{ $item['account_name'] }} | {{ number_format($item['budgeted_amount'], 2) }} | {{ number_format($item['actual_amount'], 2) }} | {{ number_format($item['variance_amount'], 2) }} | {{ number_format(abs($item['variance_percent']), 2) }}% |
| Total | {{ number_format($data['totals']['budgeted'], 2) }} | {{ number_format($data['totals']['actual'], 2) }} | {{ number_format($data['totals']['variance_amount'], 2) }} | {{ number_format(abs($data['totals']['variance_percent']), 2) }}% |