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

orWhereDate() public method

Add an "or where date" statement to the query.
public orWhereDate ( string $column, string $operator, string $value ) : Builder | static
$column string
$operator string
$value string
return Builder | static
    public function orWhereDate($column, $operator, $value)
    {
        return $this->whereDate($column, $operator, $value, 'or');
    }

Usage Example

Example #1
0
 /**
  * Add an "or where date" statement to the query.
  *
  * @param string $column
  * @param string $operator
  * @param int $value
  * @return \Illuminate\Database\Query\Builder|static 
  * @static 
  */
 public static function orWhereDate($column, $operator, $value)
 {
     return \Illuminate\Database\Query\Builder::orWhereDate($column, $operator, $value);
 }