diff --git a/bootstrap/app.php b/bootstrap/app.php index 1e4d6cf..5e80c73 100644 --- a/bootstrap/app.php +++ b/bootstrap/app.php @@ -27,6 +27,7 @@ $app->post('/api/auth/register', [AuthController::class, 'register']); // Authenticated routes (any logged-in user) $app->group('', function (RouteCollectorProxy $group) { + $group->get('/', [ViewController::class, 'home']); $group->get('/home', [ViewController::class, 'home']); $group->get('/today', [ViewController::class, 'today']); $group->get('/texts', [ViewController::class, 'userTexts']);