['Stancl\Tenancy\Features\TenantRedirect'], ]); Route::get('/foobar', function () { return 'Foo'; })->name('home'); Route::get('/redirect', function () { return redirect()->route('home')->tenant('abcd'); }); Tenant::create('foo.localhost'); tenancy()->init('foo.localhost'); $this->get('/redirect') ->assertRedirect('http://abcd/foobar'); } }