Eloquent::orWhereDate PHP Method

orWhereDate() public static method

Add an "or where date" statement to the query.
public static orWhereDate ( string $column, string $operator, integer $value ) : Builder | static
$column string
$operator string
$value integer
return Illuminate\Database\Query\Builder | static
        public static function orWhereDate($column, $operator, $value)
        {
            return \Illuminate\Database\Query\Builder::orWhereDate($column, $operator, $value);
        }
Eloquent