auth = $auth; } /** * Handle an incoming request. * * @param \Illuminate\Http\Request $request * @param \Closure $next * @param string|null $guard * @return mixed * @throws ApiException */ public function handle($request, Closure $next, $guard = null) { if(empty($request->user())){ throw new ApiException(401); } return $next($request); } }