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'); } }