You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: passport.md
+25-16Lines changed: 25 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -255,6 +255,7 @@ To get started, we need to instruct Passport how to return our "authorization" v
255
255
All the authorization view's rendering logic may be customized using the appropriate methods available via the `Laravel\Passport\Passport` class. Typically, you should call this method from the `boot` method of your application's `App\Providers\AppServiceProvider` class:
256
256
257
257
```php
258
+
use Inertia\Inertia;
258
259
use Laravel\Passport\Passport;
259
260
260
261
/**
@@ -638,6 +639,7 @@ To get started, we need to instruct Passport how to return our "user code" and "
638
639
All the authorization view's rendering logic may be customized using the appropriate methods available via the `Laravel\Passport\Passport` class. Typically, you should call this method from the `boot` method of your application's `App\Providers\AppServiceProvider` class.
639
640
640
641
```php
642
+
use Inertia\Inertia;
641
643
use Laravel\Passport\Passport;
642
644
643
645
/**
@@ -650,15 +652,19 @@ public function boot(): void
The `Schema::getTableListing()` method now returns schema-qualified table names by default. You may pass the `schemaQualified` argument to change the behavior as desired:
@@ -172,10 +172,10 @@ The `Schema::getTableListing()` method now returns schema-qualified table names
0 commit comments