Granada\ORM::where_gte PHP Method

where_gte() public method

.. >= clause to your query
public where_gte ( string $column_name, integer $value )
$column_name string
$value integer
    public function where_gte($column_name, $value)
    {
        return $this->_add_simple_where($column_name, '>=', $value);
    }
ORM