Ну а потом можно делать так:
public function where($column, $comparison, $value) {
// ...
}
public function whereGte($column, $value) {
return $this->where($column, '>=', $value);
} public function where($column, $comparison, $value) {
// ...
}
public function whereGte($column, $value) {
return $this->where($column, '>=', $value);
}