From d2fc9908f30c3bec6ca8576dd2b5f31fa75ddba2 Mon Sep 17 00:00:00 2001 From: Zach DeCook Date: Thu, 27 Dec 2018 22:50:36 -0500 Subject: * Song View: Add links to previous and next songs --- laravel/routes/web.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'laravel/routes') 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'); -- cgit 1.4.1