This commit is contained in:
James Cole
2022-09-18 16:28:04 +02:00
parent c120a908f3
commit c25b63d87b
10 changed files with 71 additions and 437 deletions

View File

@@ -102,8 +102,8 @@ class BudgetController extends Controller
[
'budgeted' => $budgeted,
'budgeted_formatted' => app('amount')->formatAnything($currency, $budgeted, true),
'available' => app('amount')->formatAnything($currency, $available, true),
'available_formatted' => $available,
'available' => $available,
'available_formatted' => app('amount')->formatAnything($currency, $available, true),
'percentage' => $percentage,
'currency_id' => $currency->id,
'currency_code' => $currency->code,