about summary refs log tree commit diff
path: root/laravel/routes
diff options
context:
space:
mode:
authorZach DeCook <zachdecook@gmail.com>2018-12-27 10:22:36 -0500
committerZach DeCook <zachdecook@gmail.com>2018-12-27 10:22:36 -0500
commit1a9c3529c32df34b92538bb6599cf609fdf9bb3c (patch)
tree83d86919d15598314990cd4bd577c367a6452308 /laravel/routes
parent7057844718f20f47109549a0f26745d88d66e195 (diff)
downloadprosongsa-1a9c3529c32df34b92538bb6599cf609fdf9bb3c.tar.gz
* Song View: Add 'back to playlist' link
Diffstat (limited to 'laravel/routes')
-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 d11a121..730f622 100644
--- a/laravel/routes/web.php
+++ b/laravel/routes/web.php
@@ -16,6 +16,7 @@ Route::get('/', function () {
 });
 Route::get('/song/{song}', 'SongController@show')->name('song.show');
 Route::get('/playlist/{playlist}', 'PlaylistController@show')->name('playlist.show');
+Route::post('/new/song', 'SongController@post')->name('song.postnew');
 
 Auth::routes();