{{ session('status') }}
{{ $budget->period_start->format('Y-m-d') }} ~ {{ $budget->period_end->format('Y-m-d') }}
| {{ __('Account') }} | {{ __('Budgeted') }} | {{ __('Actual') }} | {{ __('Variance') }} |
|---|---|---|---|
| {{ $item->chartOfAccount->account_name_zh }} | NT$ {{ number_format($item->budgeted_amount, 2) }} | NT$ {{ number_format($item->actual_amount, 2) }} | {{ $item->variance >= 0 ? '+' : '' }}NT$ {{ number_format($item->variance, 2) }} |
| {{ __('Account') }} | {{ __('Budgeted') }} | {{ __('Actual') }} | {{ __('Utilization') }} |
|---|---|---|---|
| {{ $item->chartOfAccount->account_name_zh }} @if($item->isOverBudget()) @endif | NT$ {{ number_format($item->budgeted_amount, 2) }} | NT$ {{ number_format($item->actual_amount, 2) }} | {{ number_format($item->utilization_percentage, 1) }}% |