about summary refs log tree commit diff
path: root/laravel/routes/web.php
diff options
context:
space:
mode:
authorZach DeCook <zachdecook@gmail.com>2018-12-26 14:15:13 -0500
committerZach DeCook <zachdecook@gmail.com>2018-12-26 14:15:13 -0500
commitb2459a5f593ed143403b26dd722be7bf006a2516 (patch)
treed64bc3eedd82f04fd345520c2bb0ad75d888136f /laravel/routes/web.php
parent4a76e3a6d8d963b5c9ac9cffd11c065dea478011 (diff)
downloadprosongsa-b2459a5f593ed143403b26dd722be7bf006a2516.tar.gz
* Auth: Add auth
Diffstat (limited to 'laravel/routes/web.php')
-rw-r--r--laravel/routes/web.php4
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');