user login auth in lumen

1.8k Views Asked by At

i tried to do auth as we usually do in laravel5 but it is showing me following error:

ErrorException in AuthManager.php line 152: Undefined index: provider

after that i tried following link Authentication: index not found: provider

then got following error:

call_user_func_array() expects parameter 1 to be a valid callback, class 'Illuminate\Auth\TokenGuard' does not have a method 'attempt'

now i am stuck for this So,what should i do for user signin authentication?

1

There are 1 best solutions below

2
On

If you're using the Auth middleware on your route make sure to uncomment the appropriate line in your bootstrap/app.php file...

$app->routeMiddleware([
    'auth' => App\Http\Middleware\Authenticate::class,
]);