Redirect home page to login or dashboard

This commit is contained in:
Ben Ramey
2017-11-04 19:11:38 -06:00
parent 58ffca6947
commit 3813ffc95e
3 changed files with 7 additions and 17 deletions

View File

@@ -11,9 +11,7 @@
|
*/
Route::get('/', function () {
return view('home');
});
Route::get('/', "HomeController@index");
Auth::routes();