From 9eb0a7ab952887d5c51668af8f2a65f8141f0de1 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Mon, 1 Dec 2014 14:43:00 +0000 Subject: [PATCH] Redirect the user to the dashboard after setup --- app/controllers/SetupController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/SetupController.php b/app/controllers/SetupController.php index 4c826664..d2d2723a 100644 --- a/app/controllers/SetupController.php +++ b/app/controllers/SetupController.php @@ -47,7 +47,7 @@ class SetupController extends Controller { $setting->save(); } - return Redirect::to('/'); + return Redirect::to('dashboard'); } else { // No good, let's try that again. return Redirect::back()->withInput()->with('errors', $v->messages());