From ea5ca6d7c562777c59d78618e00eaf9f630a169a Mon Sep 17 00:00:00 2001 From: Swapnil Bhavsar Date: Sun, 27 Sep 2020 23:27:50 +0530 Subject: [PATCH] Update source/docs/v3/features/cross-domain-redirect.blade.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Samuel Ć tancl --- source/docs/v3/features/cross-domain-redirect.blade.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/docs/v3/features/cross-domain-redirect.blade.md b/source/docs/v3/features/cross-domain-redirect.blade.md index f482e2e..5f93e2e 100644 --- a/source/docs/v3/features/cross-domain-redirect.blade.md +++ b/source/docs/v3/features/cross-domain-redirect.blade.md @@ -14,7 +14,7 @@ Sometimes you may want to redirect the user to a specific route on a different d return redirect()->route('home')->domain($domain); ``` -You can also use the `tenant_route()` helper to redirect users between domains. Which also works when redirecting the user from the central domain to the tenant domain. +You can also use the `tenant_route()` helper to redirect users to another domain. ```php return redirect(tenant_route($domain, 'home'));