Eloquent::orWhereNotIn PHP Method

orWhereNotIn() public static method

Add an "or where not in" clause to the query.
public static orWhereNotIn ( string $column, mixed $values ) : Builder | static
$column string
$values mixed
return Illuminate\Database\Query\Builder | static
        public static function orWhereNotIn($column, $values)
        {
            return \Illuminate\Database\Query\Builder::orWhereNotIn($column, $values);
        }
Eloquent