我正在创建第一个流明+原理应用程序。而且我有身份验证问题。这是我的Authenticate.php中间件:
public function handle($request, Closure $next, $guard = null)
{
if ($this->auth->guard($guard)->guest()) {
return response()->json(['error' => 'Unauthorized'], 401);
}
return $next($request);
}
但这给了我错误
(1/1)InvalidArgumentException 未定义身份验证防护[]。