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 | cb78df544c7155edc0826079818a6c6509cf852d (patch) | |
tree | 87f14e8ca1f87a9561c90bc61514efb43ef5d98e /routes/web.php | |
parent | 87a36e9bfbd5348a2bc001ccef14a171b6ee8ccf (diff) |
Add bookmarks page
Diffstat (limited to 'routes/web.php')
-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'); +}); |