From ac8a30d7820d25be644e7fcd7612d57d6f373551 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Tue, 9 Jul 2024 00:15:37 +0200 Subject: [PATCH] add line end to sample route response --- assets/tenant_routes.stub.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; }); });