diff options
| author | Zach DeCook <zachdecook@gmail.com> | 2018-12-27 22:50:36 -0500 |
|---|---|---|
| committer | Zach DeCook <zachdecook@gmail.com> | 2018-12-27 22:50:36 -0500 |
| commit | d2fc9908f30c3bec6ca8576dd2b5f31fa75ddba2 (patch) | |
| tree | 7a56796e06fbd4de77504e40ac6793da5e67d466 /laravel/routes/web.php | |
| parent | d0bc101ed1178503af58f0c9d8a680a4dc393654 (diff) | |
| download | prosongsa-d2fc9908f30c3bec6ca8576dd2b5f31fa75ddba2.tar.gz | |
* Song View: Add links to previous and next songs
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'); |
