Eloquent::orWhereTime PHP Method

orWhereTime() public static method

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