I have a query in Kohana ORM and I need to filter by client, this is
client = ORM::factory('clients')->orders->with('commerce')->where('orders.id', '>', 12)->and_where('clients.id' >12)->find_all;
this part works, but the clients repeat themselves and I want the client that made the most current request to appear