Backend for songs.zachdecook.com
Diffstat (limited to 'laravel/routes/web.php')
| -rw-r--r-- | laravel/routes/web.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/laravel/routes/web.php b/laravel/routes/web.php index 6493350..f978467 100644 --- a/laravel/routes/web.php +++ b/laravel/routes/web.php @@ -13,7 +13,7 @@ Route::get('/', function () { return view('welcome'); -}); +})->name('song.list'); Route::post('/new/song', 'SongController@post')->name('song.postnew')/*->middleware('can:create,App\Song')*/; Route::get('/playlist/{playlist}', 'PlaylistController@show')->name('playlist.show'); Route::get('/s/{song}', 'SongController@show')->name('song.show'); |