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
コード例 #1
0
ファイル: Search.php プロジェクト: rieschl/Adldap2
 /**
  * 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;
 }