Trying to figure out how to show fields in a listing from an array returned using a hasMany relation. The array is returned as a separate Select. How do I go about showing those fields in the listing? I tried the model.field in the columns list, to no avail. Below is the output from Debugger with a pr($row):
[guests] => Array
(
[0] => Array
(
[id] => 3
[uniq_id] => 362d68513585b533c43491cc48ed707d1eb0ae49
[user_id] => 486
[created] => 2016-02-16 19:17:46
[modified] =>
[p_id] => 29
[g_first_name] =>
[g_last_name] =>
[g_cell] => 567-989-6000
[g_email] =>
)
[1] => Array
(
[id] => 4
[uniq_id] => 2c34bd2eee8a513a8959304a17b6165fa70795b2
[user_id] => 486
[created] => 2016-02-17 01:14:48
[modified] =>
[p_id] => 29
[g_first_name] =>
[g_last_name] =>
[g_cell] => 678-343-5567
[g_email] =>
)
)
)