diff options
| author | Zach DeCook <zachdecook@gmail.com> | 2018-12-26 14:15:13 -0500 |
|---|---|---|
| committer | Zach DeCook <zachdecook@gmail.com> | 2018-12-26 14:15:13 -0500 |
| commit | b2459a5f593ed143403b26dd722be7bf006a2516 (patch) | |
| tree | d64bc3eedd82f04fd345520c2bb0ad75d888136f /laravel/routes/web.php | |
| parent | 4a76e3a6d8d963b5c9ac9cffd11c065dea478011 (diff) | |
| download | prosongsa-b2459a5f593ed143403b26dd722be7bf006a2516.tar.gz | |
* Auth: Add auth
Diffstat (limited to 'laravel/routes/web.php')
| -rw-r--r-- | laravel/routes/web.php | 4 |
1 files changed, 4 insertions, 0 deletions
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'); |
