Eloquent::orWhereNull PHP Method

orWhereNull() public static method

Add an "or where null" clause to the query.
public static orWhereNull ( string $column ) : Builder | static
$column string
return Illuminate\Database\Query\Builder | static
        public static function orWhereNull($column)
        {
            return \Illuminate\Database\Query\Builder::orWhereNull($column);
        }
Eloquent