diff options
author | Frankie B <git@diskfloppy.me> | 2023-07-29 18:08:49 +0100 |
---|---|---|
committer | Frankie B <frankieraybrown@gmail.com> | 2023-07-29 18:10:50 +0100 |
commit | 628132d27a2eae3d405d21fd2782e5f0488721ef (patch) | |
tree | df238c52afd92350851c35a6cf2a49bbcd51825c /routes/web.php | |
parent | 85cb771075c207e389c3dbb61d90055af794cc47 (diff) |
Update routes/web.php
Co-authored-by: codacy-production[bot] <61871480+codacy-production[bot]@users.noreply.github.com>
Diffstat (limited to 'routes/web.php')
-rw-r--r-- | routes/web.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/routes/web.php b/routes/web.php index f2ca94c..2828de6 100644 --- a/routes/web.php +++ b/routes/web.php @@ -44,7 +44,10 @@ Route::get('/weather', function () { return view('pages.weather'); }); -Route::get('/music', function () { +Route::get('/music', function () +{ + return view('pages.music'); +}); return view('pages.music'); }); /* ------------------------------ Admin Routes ------------------------------ */ |