Builder::orWhereDate()

Builder|Builder orWhereDate(string $column, string $operator, string $value) Add an "or where date" statement to the query. Parameters string $column string $operator string $value Return Value Builder|Builder

Builder::orWhereColumn()

Builder|Builder orWhereColumn(string|array $first, string|null $operator = null, string|null $second = null) Add an "or where" clause comparing two columns to the query. Parameters string|array $first string|null $operator string|null $second Return Value Builder|Builder

Builder::orWhereBetween()

Builder|Builder orWhereBetween(string $column, array $values) Add an or where between statement to the query. Parameters string $column array $values Return Value Builder|Builder

Builder::orWhere()

Builder|Builder orWhere(Closure|string $column, string $operator = null, mixed $value = null) Add an "or where" clause to the query. Parameters Closure|string $column string $operator mixed $value Return Value Builder|Builder

Builder::orWhere()

Builder|Builder orWhere(string|Closure $column, string $operator = null, mixed $value = null) Add an "or where" clause to the query. Parameters string|Closure $column string $operator mixed $value Return Value Builder|Builder

Builder::orHavingRaw()

Builder|Builder orHavingRaw(string $sql, array $bindings = array()) Add a raw or having clause to the query. Parameters string $sql array $bindings Return Value Builder|Builder

Builder::orHaving()

Builder|Builder orHaving(string $column, string $operator = null, string $value = null) Add a "or having" clause to the query. Parameters string $column string $operator string $value Return Value Builder|Builder

Builder::orHas()

Builder|Builder orHas(string $relation, string $operator = '>=', int $count = 1) Add a relationship count / exists condition to the query with an "or". Parameters string $relation string $operator int $count Return Value Builder|Builder

Builder::orderByRaw()

$this orderByRaw(string $sql, array $bindings = array()) Add a raw "order by" clause to the query. Parameters string $sql array $bindings Return Value $this

Builder::orderBy()

$this orderBy(string $column, string $direction = 'asc') Add an "order by" clause to the query. Parameters string $column string $direction Return Value $this