diff options
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'); +}); |