Is there any way to sort (or order by) in ORM by using a value from a foreign table?
Can you do something like the following:
ORM::factory("table")->order_by("table.foregin_table.column" , "ASC")
Or do you have to use some regular MySQL and join the tables together old school?