I have the following object
$VAR1 = [
{
'value' => {
'a' => 'd',
'b' => 'e',
'c' => 'f'
}
},
{
'value' => {
'a' => 'g',
'b' => 'h',
'c' => 'x'
}
}
];
I have to traverse this object to get values for a,b,c. Please can someone help ?