From 5b154d1834a4bf634c78350591764fca416910e1 Mon Sep 17 00:00:00 2001 From: Anton Komarev <1849174+antonkomarev@users.noreply.github.com> Date: Thu, 26 Sep 2019 07:25:07 +0300 Subject: [PATCH] Fix default tenant route (#132) --- src/Commands/Install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/Install.php b/src/Commands/Install.php index 39ed31d1..136a190e 100644 --- a/src/Commands/Install.php +++ b/src/Commands/Install.php @@ -65,7 +65,7 @@ class Install extends Command | */ -Route::get('/', function () { +Route::get('/app', function () { return 'This is your multi-tenant application. The id of the current tenant is ' . tenant('id'); }); "