Backend for songs.zachdecook.com
Diffstat (limited to 'laravel/routes/web.php')
-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');