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

orWhereNull() public method

Add an "or where null" clause to the query.
public orWhereNull ( string $column ) : Builder | static
$column string
return Builder | static
    public function orWhereNull($column)
    {
        return $this->whereNull($column, 'or');
    }

Usage Example

Example #1
0
 /**
  * Add an "or where null" clause to the query.
  *
  * @param string $column
  * @return \Illuminate\Database\Query\Builder|static 
  * @static 
  */
 public static function orWhereNull($column)
 {
     return \Illuminate\Database\Query\Builder::orWhereNull($column);
 }
All Usage Examples Of Illuminate\Database\Query\Builder::orWhereNull