auth = $auth; } /** * Handle an incoming request. * * @param \Illuminate\Http\Request $request * @param \Closure $next * @return mixed */ public function handle($request, Closure $next) { if($this->auth->check() && $this->auth->user()->status === -1){ abort(403); } return $next($request); } }