And.. completed the account controller.

This commit is contained in:
James Cole
2015-04-04 22:53:49 +02:00
parent 8520a5002f
commit 6b40a933e9
2 changed files with 116 additions and 4 deletions

View File

@@ -192,7 +192,7 @@ class AccountController extends Controller
];
$account = $repository->store($accountData);
Session::flash('success', 'New account "' . $account->name . '" stored!');
Session::flash('success', 'New account "' . $account->name . '" stored!');
if (intval(Input::get('create_another')) === 1) {
return Redirect::route('accounts.create', $request->input('what'))->withInput();