Example #1
0
 /**
  * Add an "or search where" clause to the query.
  *
  * @param string $term Search query
  * @param array $columns Table columns to search
  * @return self 
  * @static 
  */
 public static function orSearchWhere($term, $columns = array())
 {
     return \October\Rain\Database\Builder::orSearchWhere($term, $columns);
 }