orWhereNotNull() public method

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