Update passport.blade.md

Update passport.blade.md to correctly show tenant migration command
This commit is contained in:
Michael Kampmann Petræus 2022-08-19 13:52:30 +02:00 committed by GitHub
parent 2769460a1a
commit 0aac28e540
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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