redirect to allocation tab when created

This commit is contained in:
Dane Everitt 2016-09-29 17:47:47 -04:00
parent abac9b506b
commit 723e34a784
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
2 changed files with 4 additions and 2 deletions

View file

@ -77,9 +77,10 @@ class NodesController extends Controller
$new = $node->create($request->except([
'_token'
]));
Alert::success('Successfully created new node. You should allocate some IP addresses to it now.')->flash();
Alert::success('Successfully created new node. <strong>Before you can add any servers you need to first assign some IP addresses and ports.</strong>')->flash();
return redirect()->route('admin.nodes.view', [
'id' => $new
'id' => $new,
'tab' => 'tab_allocation'
]);
} catch (DisplayValidationException $e) {
return redirect()->route('admin.nodes.new')->withErrors(json_decode($e->getMessage()))->withInput();