Granada\ORM::where_lte PHP Method

where_lte() public method

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