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-27 08:51:12 -0500
committerZach DeCook <zachdecook@gmail.com>2018-12-27 08:51:12 -0500
commit7057844718f20f47109549a0f26745d88d66e195 (patch)
tree408cd2ce68e743461489013afb4d83eaed5b74cd /laravel/routes/web.php
parent67c377fe1d87bfb127bcbfa952e9119bd341d4e8 (diff)
downloadprosongsa-7057844718f20f47109549a0f26745d88d66e195.tar.gz
* Views: Create playlist view
Diffstat (limited to 'laravel/routes/web.php')
-rw-r--r--laravel/routes/web.php1
1 files changed, 1 insertions, 0 deletions
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();