From 738cfcb8df5681cdc0e936a77a2ce61e7901f96a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Fri, 18 Sep 2020 17:42:00 +0200 Subject: [PATCH] Laravel 8 note --- source/docs/v3/quickstart.blade.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/source/docs/v3/quickstart.blade.md b/source/docs/v3/quickstart.blade.md index a14e064..ea46d73 100644 --- a/source/docs/v3/quickstart.blade.md +++ b/source/docs/v3/quickstart.blade.md @@ -111,13 +111,16 @@ protected function centralDomains(): array return config('tenancy.central_domains'); } ``` -In Laravel 8, call these methods manually from your RouteServiceProvider's boot() method, instead of the $this->routes() calls + +If you're using Laravel 8, call these methods manually from your `RouteServiceProvider`'s `boot()` method, instead of the `$this->routes()` calls. + ```php public function boot() { $this->configureRateLimiting(); - $this->mapWebRoutes(); // Add this to boot - $this->mapApiRoutes(); // Add this to boot + + $this->mapWebRoutes(); + $this->mapApiRoutes(); } ```