about summary refs log tree commit diff
path: root/laravel/routes
diff options
context:
space:
mode:
authorZach DeCook <zachdecook@gmail.com>2018-12-26 13:04:49 -0500
committerZach DeCook <zachdecook@gmail.com>2018-12-26 13:04:49 -0500
commit0790c781f8a1ae297c800f86bc8da2c5c2818670 (patch)
treeb9cb90e99a3f3fdc415e4a1c41393daaf9e889d5 /laravel/routes
parente51142fbb8ba83c3938915e213fc3037f7fb06f9 (diff)
downloadprosongsa-0790c781f8a1ae297c800f86bc8da2c5c2818670.tar.gz
* Songs: Add links to the songs
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 810aa34..9b2e466 100644
--- a/laravel/routes/web.php
+++ b/laravel/routes/web.php
@@ -14,3 +14,4 @@
 Route::get('/', function () {
     return view('welcome');
 });
+Route::get('/song/{song}', 'SongController@show')->name('song.show');