From 7057844718f20f47109549a0f26745d88d66e195 Mon Sep 17 00:00:00 2001 From: Zach DeCook Date: Thu, 27 Dec 2018 08:51:12 -0500 Subject: * Views: Create playlist view --- laravel/routes/web.php | 1 + 1 file changed, 1 insertion(+) (limited to 'laravel/routes') diff --git a/laravel/routes/web.php b/laravel/routes/web.php index c091d9c..d11a121 100644 --- a/laravel/routes/web.php +++ b/laravel/routes/web.php @@ -15,6 +15,7 @@ Route::get('/', function () { return view('welcome'); }); Route::get('/song/{song}', 'SongController@show')->name('song.show'); +Route::get('/playlist/{playlist}', 'PlaylistController@show')->name('playlist.show'); Auth::routes(); -- cgit 1.4.1