diff --git a/app/Http/Controllers/NewUserController.php b/app/Http/Controllers/NewUserController.php index eadf910803..f568da53f7 100644 --- a/app/Http/Controllers/NewUserController.php +++ b/app/Http/Controllers/NewUserController.php @@ -53,7 +53,7 @@ class NewUserController extends Controller // create normal asset account: $assetAccount = [ 'name' => $request->get('bank_name'), - 'iban' => null, + 'iban' => null, 'accountType' => 'asset', 'virtualBalance' => 0, 'active' => true, @@ -70,7 +70,7 @@ class NewUserController extends Controller if (strlen($request->get('savings_balance') > 0)) { $savingsAccount = [ 'name' => $request->get('bank_name') . ' savings account', - 'iban' => null, + 'iban' => null, 'accountType' => 'asset', 'virtualBalance' => 0, 'active' => true, @@ -88,7 +88,7 @@ class NewUserController extends Controller if (strlen($request->get('credit_card_limit') > 0)) { $creditAccount = [ 'name' => 'Credit card', - 'iban' => null, + 'iban' => null, 'accountType' => 'asset', 'virtualBalance' => floatval($request->get('credit_card_limit')), 'active' => true,