query = User::where([]); self::$instance = $this; } /** * @param integer $id * @return UserQuery|Builder */ public function whereId($id, $operator = '=') { $this->query = $this->query->where('id', $operator, $id); return self::$instance; } /** * @param integer $name * @return UserQuery|Builder */ public function whereName($name, $operator = 'LIKE') { $this->query = $this->query->where('name', $operator, $name); return self::$instance; } /** * @param integer $email * @return UserQuery|Builder */ public function whereEmail($email, $operator = 'LIKE') { $this->query = $this->query->where('email', $operator, $email); return self::$instance; } /** * @param integer $status * @return UserQuery|Builder */ public function whereStatus($status, $operator = '=') { $this->query = $this->query->where('status', $operator, $status); return self::$instance; } /** * @param integer $curso_id * @return UserQuery|Builder */ public function whereCurso($curso_id, $operator = '=') { $this->query = $this->query->where('curso_id', $operator, $curso_id); return self::$instance; } /** * @param integer $campus_id * @return UserQuery|Builder */ public function whereCampus($campus_id, $operator = '=') { $this->query = $this->query->where('campus_id', $operator, $campus_id); return self::$instance; } /** * @param integer $type * @return UserQuery|Builder */ public function whereType($type, $operator = '=') { $this->query = $this->query ->join('user_type', 'users.id', '=', 'user_type.user_id') ->where('type', $operator, $type); return self::$instance; } }