We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14843b4 commit f9c9bf0Copy full SHA for f9c9bf0
src/TenantRouteServiceProvider.php
@@ -14,7 +14,7 @@ public function map()
14
if (! in_array(request()->getHost(), $this->app['config']['tenancy.exempt_domains'] ?? [])
15
&& file_exists(base_path('routes/tenant.php'))) {
16
Route::middleware(['web', 'tenancy'])
17
- ->namespace($this->app['config']['tenant_route_namespace'] ?? 'App\Http\Controllers')
+ ->namespace($this->app['config']['tenancy.tenant_route_namespace'] ?? 'App\Http\Controllers')
18
->group(base_path('routes/tenant.php'));
19
}
20
0 commit comments