//fetch a parent and it's childeren $parent = Model_Parent::find()->where('id', '=', '1')->related('children')->get(); return \View::forge('relationview', array('parent' => $parent));and then in your view
echo "Parent information<br />"; echo $parent->fullname, '<br />'; echo "Children<br />"; foreach ($parent->children as $child) { echo $child->name, '<br />'; }So just iterate over the relation (in case it's a "many" relation. if there is only one, you can use the object directly).
$fieldset = Fieldset::forge('article')->add_model($article)->populate($article, true); $fieldset->add('fieldname', 'Field Name', array('class' => 'pretty_input')); echo $fieldset->build();You should do this anyway, so you can base $fieldset to the View, and do your echo'ing in the view. ORM objects aren't really mend for running selects, so using relations for that isn't a good idea. It's a lot simpler and faster to just code a normal query. Here's an example of a query that generates an id=>name array strait from a table: http://fuelphp.com/forums/posts/view_reply/5426
It looks like you're new here. If you want to get involved, click one of these buttons!