Add some rounding to make forms more neat.

This commit is contained in:
James Cole
2016-10-23 16:56:18 +02:00
parent 446eaf6588
commit 19e9f382e4
2 changed files with 7 additions and 6 deletions

View File

@@ -146,7 +146,7 @@ class AccountController extends Controller
'ccMonthlyPaymentDate' => $account->getMeta('ccMonthlyPaymentDate'),
'openingBalanceDate' => $openingBalanceDate,
'openingBalance' => $openingBalanceAmount,
'virtualBalance' => round($account->virtual_balance, 2),
'virtualBalance' => $account->virtual_balance,
];
Session::flash('preFilled', $preFilled);
Session::flash('gaEventCategory', 'accounts');