Hi I can't seem to select data from multiple tables with kohana orm.
When I do:
$obj = orm::factory('a') ->join('b') ->on('a.b_id','=','b.id') ->select ('b.','a.') ->find_all();
The only variables available in $obj are from table a. Can someone help?