to get an array of profile objects, along with their corresponding bio and contact info. I confirm the information is there by using var_dump. I can see information from all three tables… however… I'm not sure how to reference the elements!
In my view, I have $model->profile_id and and $model->email … which work fine (and they're coming from the profile table). But I'm not sure how to reference something from the contact or bio table.
When I try $model->name_first … I get this message: Property "profile.name_first" is not defined. That's true… because name_first is in the table/model profile_contact. How do I refer to it in the view?