"Try the code below:
$students = ORM::factory('student')->find_all();
foreach($students as $student)
{
echo 'Student: '.$student->firstname.' Phone Numbers:';
$student_phones = $student->phone->find_all();
foreach($student_phones as $student_phone)
{
echo $student_phone->number.', ';
}
echo '';
} " by karlsheen in Kohana 3 ORM tutorial and samples
"In your one-to-many example you list the student associated with each phone number.
How would you list the phone number(s) associated ..." by will in Kohana 3 ORM tutorial and samples