Eloquent::whereNotIn PHP Method

whereNotIn() public static method

Add a "where not in" clause to the query.
public static whereNotIn ( string $column, mixed $values, string $boolean = 'and' ) : Builder | static
$column string
$values mixed
$boolean string
return Illuminate\Database\Query\Builder | static
        public static function whereNotIn($column, $values, $boolean = 'and')
        {
            return \Illuminate\Database\Query\Builder::whereNotIn($column, $values, $boolean);
        }
Eloquent