ORM::where_lte PHP Method

where_lte() public method

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