about summary refs log tree commit diff
path: root/laravel/routes
diff options
context:
space:
mode:
authorZach DeCook <zachdecook@gmail.com>2018-12-27 22:50:36 -0500
committerZach DeCook <zachdecook@gmail.com>2018-12-27 22:50:36 -0500
commitd2fc9908f30c3bec6ca8576dd2b5f31fa75ddba2 (patch)
tree7a56796e06fbd4de77504e40ac6793da5e67d466 /laravel/routes
parentd0bc101ed1178503af58f0c9d8a680a4dc393654 (diff)
downloadprosongsa-d2fc9908f30c3bec6ca8576dd2b5f31fa75ddba2.tar.gz
* Song View: Add links to previous and next songs
Diffstat (limited to 'laravel/routes')
-rw-r--r--laravel/routes/web.php2
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');