1 2 3 4 5 6 7 8 9 10 11 12
<?php class Home_Controller extends Controller { public function action_index(){ foreach(ORM::factory('fairy')->with ('tree.protector','tree.flower.protector')->find_all() as $fairy) { echo $fairy->tree->protector->name; } } } ?>