Helper, I can fetch value of fname, lname and so on.., But I'm struggling to fetch value of address1, city.., where my array is,
Array
(
[id] => 172
[fname] => Someone
[lname] => Sombody
[gender] => Male
[phno] => 0123456789
[addresses] => Array
(
[0] => Array
(
[id] => 71
[user_id] => 172
[address1] => somewhere
[city] => some city
[state] => some state
[country] => India
)
[1] => Array
(
[id] => 72
[user_id] => 172
[address1] => someplace
[city] => specified city
[state] => specified state
[country] => India
)
)
)