From c6d5a420ee4b2009cdc225df33f1e281b6dbd386 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Kampmann=20Petr=C3=A6us?= Date: Fri, 26 Aug 2022 16:40:34 +0200 Subject: [PATCH] Update passport.blade.md (#190) Update passport.blade.md to correctly show tenant migration command --- 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 9e8d8d5..558c683 100644 --- a/source/docs/v3/integrations/passport.blade.md +++ b/source/docs/v3/integrations/passport.blade.md @@ -31,7 +31,7 @@ To use Passport inside the tenant part of your application, you may do the follo 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`. +4. Apply Passport migrations by running `php artisan tenants:migrate`. 5. Register the Passport routes in your `AuthServiceProvider` by adding the following code to the provider's `boot` method. ```php