I am getting error
Class 'Tymon\JWTAuth\Providers\LaravelServiceProvider' not found
what i did to solve :-
install
"tymon/jwt-auth": "1.0.0-beta.3"
then update the alias
'JWTAuth' => Tymon\JWTAuth\Facades\JWTAuth::class, 'JWTFactory' => Tymon\JWTAuth\Facades\JWTFactory::class,
set provider to
Tymon\JWTAuth\Providers\LaravelServiceProvider::class,
but still getting error:
Class 'Tymon\JWTAuth\Providers\LaravelServiceProvider' not found when usiing laravel 5.5
But still not working.
So what i need to do? Please help me out?