1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 06:44:04 +00:00

add line end to sample route response

This commit is contained in:
Samuel Štancl 2024-07-09 00:15:37 +02:00
parent 590360bf0d
commit ac8a30d782

View file

@ -24,6 +24,6 @@ Route::middleware([
Middleware\ScopeSessions::class, Middleware\ScopeSessions::class,
])->group(function () { ])->group(function () {
Route::get('/', 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";
}); });
}); });