Update passport.blade.md (#190)

Update passport.blade.md to correctly show tenant migration command
This commit is contained in:
Michael Kampmann Petræus 2022-08-26 16:40:34 +02:00 committed by GitHub
parent 2769460a1a
commit c6d5a420ee
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`. 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. 5. Register the Passport routes in your `AuthServiceProvider` by adding the following code to the provider's `boot` method.
```php ```php