From b2459a5f593ed143403b26dd722be7bf006a2516 Mon Sep 17 00:00:00 2001 From: Zach DeCook Date: Wed, 26 Dec 2018 14:15:13 -0500 Subject: * Auth: Add auth --- laravel/routes/web.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'laravel/routes/web.php') diff --git a/laravel/routes/web.php b/laravel/routes/web.php index 9b2e466..c091d9c 100644 --- a/laravel/routes/web.php +++ b/laravel/routes/web.php @@ -15,3 +15,7 @@ Route::get('/', function () { return view('welcome'); }); Route::get('/song/{song}', 'SongController@show')->name('song.show'); + +Auth::routes(); + +Route::get('/home', 'HomeController@index')->name('home'); -- cgit 1.4.1