From 9d627fe29404ae208d8e445d953bd99b7696e2e5 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Wed, 10 Aug 2022 07:06:18 +0200 Subject: [PATCH] Revert changes of third step --- source/docs/v3/integrations/passport.blade.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/docs/v3/integrations/passport.blade.md b/source/docs/v3/integrations/passport.blade.md index 437341c..44c44fc 100644 --- a/source/docs/v3/integrations/passport.blade.md +++ b/source/docs/v3/integrations/passport.blade.md @@ -28,7 +28,7 @@ To use Passport inside the tenant part of your application, you may do the follo ]; ``` -3. In your `AppServiceProvider`, add `Passport::ignoreMigrations()` to theĀ `register` method to prevent Passport migrations from running in the central application. Also add `Passport::loadKeysFrom(storage_path(config('passport.storage.key_path')))` there +3. Prevent Passport migrations from running in the central application by adding `Passport::ignoreMigrations()` to the `register` method in your `AppServiceProvider`. 4. Apply Passport migrations by running `php artisan migrate`.