diff options
author | Frankie B <git@diskfloppy.me> | 2023-06-13 23:50:07 +0100 |
---|---|---|
committer | Frankie B <frankieraybrown@gmail.com> | 2023-06-14 22:15:44 +0100 |
commit | 16ecc6abe33e824c8d101d707890af0e7ccf3101 (patch) | |
tree | 87f14e8ca1f87a9561c90bc61514efb43ef5d98e /routes | |
parent | 1763281e39a5407ecaad1be90a6ba5eb0284c06b (diff) |
Add bookmarks page
Diffstat (limited to 'routes')
-rw-r--r-- | routes/web.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/routes/web.php b/routes/web.php index 6af7650..97506dd 100644 --- a/routes/web.php +++ b/routes/web.php @@ -16,3 +16,7 @@ use Illuminate\Support\Facades\Route; Route::get('/', function () { return View::make('pages.home'); }); + +Route::get('/bookmarks', function () { + return View::make('pages.bookmarks'); +}); |