Illuminate\Database\Query\Builder::orWhereNotIn PHP Method

orWhereNotIn() public method

Add an "or where not in" clause to the query.
public orWhereNotIn ( string $column, mixed $values ) : Builder | static
$column string
$values mixed
return Builder | static
    public function orWhereNotIn($column, $values)
    {
        return $this->whereNotIn($column, $values, 'or');
    }

Usage Example

Example #1
0
 /**
  * Add an "or where not in" clause to the query.
  *
  * @param string $column
  * @param mixed $values
  * @return \Illuminate\Database\Query\Builder|static 
  * @static 
  */
 public static function orWhereNotIn($column, $values)
 {
     return \Illuminate\Database\Query\Builder::orWhereNotIn($column, $values);
 }