From cb78df544c7155edc0826079818a6c6509cf852d Mon Sep 17 00:00:00 2001 From: Frankie B Date: Tue, 13 Jun 2023 23:50:07 +0100 Subject: Add bookmarks page --- routes/web.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'routes/web.php') 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'); +}); -- cgit v1.2.3-54-g00ecf