diff --git a/assets/tenant_routes.stub.php b/assets/tenant_routes.stub.php index e3b8cb92..a5ff9aa4 100644 --- a/assets/tenant_routes.stub.php +++ b/assets/tenant_routes.stub.php @@ -24,6 +24,6 @@ Route::middleware([ Middleware\ScopeSessions::class, ])->group(function () { Route::get('/', function () { - return 'This is your multi-tenant application. The id of the current tenant is ' . tenant('id'); + return 'This is your multi-tenant application. The id of the current tenant is ' . tenant('id') . "\n"; }); });