@extends('layouts.app') @section('content')
{{ date('M d, Y', strtotime($budget->start_date)) }} — {{ date('M d, Y', strtotime($budget->end_date)) }}
| Account | Planned | Actual | Difference |
|---|---|---|---|
|
{{ $row['account_name'] }}
{{ $row['account_type'] }}
|
{{ formatCurrency($row['planned']) }} | {{ formatCurrency($row['actual']) }} | {{ $row['difference'] < 0 ? '-' : '+' }}{{ formatCurrency(abs($row['difference'])) }} @if($row['is_over']) OVER @endif |