JWT Auth Laravel 9 Tymon\\JWTAuth\\Blacklist::__construct(): Argument $storage must be of type Tymon\\JWTAuth\\Contracts\\Providers\\Storage

Viewed 23

I am using Laravl 9 and I have implemented the JWT Authentication After all setup it shows me

Tymon\JWTAuth\Blacklist::__construct(): Argument #1 ($storage) must be of type Tymon\JWTAuth\Contracts\Providers\Storage, PHPOpenSourceSaver\JWTAuth\Providers\Storage\Illuminate given

I have tried many solution but none of them worked. auth.php configuration is:

'defaults' => [
    'guard' => 'api',
    'passwords' => 'users',
],
'guards' => [
    'web' => [
        'driver' => 'session',
        'provider' => 'users',
    ],
    'api' => [
        'driver' => 'jwt',
        'provider' => 'users',
    ],
],

I have tried php artisan vendor:publish php artisan config:clear php artisan cache:clear

0 Answers
Related