orWhereContains() public method

Adds an or where contains clause to the current query.
public orWhereContains ( string $field, string $value ) : Builder
$field string
$value string
return Builder
Esempio n. 1
0
 /**
  * Adds an or where contains clause to the current query.
  *
  * @param string $field
  * @param string $value
  *
  * @return $this
  */
 public function orWhereContains($field, $value)
 {
     $this->query->orWhereContains($field, $value);
     return $this;
 }