Example #1
0
 /**
  * @param $column
  * @param $value
  * @param string $operator
  * @return $this
  */
 public function andWhere($column, $value, $operator = "=")
 {
     $this->query->andWhere($column, $value, $operator);
     return $this;
 }