I am running this query
return $this->find('all', array(
'conditions' => array(
'OR' => array(
'Chat.sender_id' => $user_id,
'Chat.receiver_id' => $user_id
)
),
'group' => array('converstation_id'),
'order' => array('Chat.id DESC')
));
But If I add Group By then order don't work in this query. What I am doing wrong?