diff --git a/app/controllers/AuthController.php b/app/controllers/AuthController.php new file mode 100644 index 00000000..3debd1cd --- /dev/null +++ b/app/controllers/AuthController.php @@ -0,0 +1,16 @@ + 'auth'], function() { + // Dashboard/Management Panel etc. Route::get('/dashboard', 'DashboardController@showDashboard'); + + // Authorization stuff. + Route::get('/auth/logout', 'AuthController@logoutAction'); });