我在Laravel 5.8上使用JWT-Auth,同时也在验证模块运行,但是我无法使用jwt.auth
中间件访问受保护的路由,并且给我这个错误:
{“错误”:“ token_not_provided”}
这是我的路线:
Route::group(['middleware' => ['jwt.auth']], function(){
Route::get('/dashboard', 'AppController@dashboard');
});
这是我的控制器:
public function dashboard(Request $request)
{
// What should I do here?
}