From 72171a852f25fffe2961ccf8e378e368ff910288 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Mon, 10 Oct 2022 12:43:02 +0200 Subject: [PATCH] Fix numbering --- source/docs/v3/integrations/passport.blade.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/docs/v3/integrations/passport.blade.md b/source/docs/v3/integrations/passport.blade.md index e10ef3a..8aee31c 100644 --- a/source/docs/v3/integrations/passport.blade.md +++ b/source/docs/v3/integrations/passport.blade.md @@ -40,7 +40,7 @@ To use Passport inside the tenant part of your application, you may do the follo ``` -4. If you're using Passport 11.x, disable the automatic Passport route registering and register the routes manually by adding the following code to the `register` method in your `AppServiceProvider`: +5. If you're using Passport 11.x, disable the automatic Passport route registering and register the routes manually by adding the following code to the `register` method in your `AppServiceProvider`: ```php Passport::$registersRoutes = false; @@ -55,9 +55,9 @@ To use Passport inside the tenant part of your application, you may do the follo }); ``` -5. Apply Passport migrations by running `php artisan tenants:migrate`. +6. Apply Passport migrations by running `php artisan tenants:migrate`. -6. Set up [the encryption keys](#passport-encryption-keys). +7. Set up [the encryption keys](#passport-encryption-keys). ## **Using Passport in both the tenant and the central application** {#using-passport-in-both-the-tenant-and-the-central-application} To use Passport in both the tenant and the central application, follow [the steps for using Passport in the tenant appliction](#using-passport-in-the-tenant-application-only) with the following adjustments: