Eloquent::whereNotNull PHP Method

whereNotNull() public static method

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