{
"id": 1,
"name": "Item Name",
"attributes": [
{
"name": "attribute 1",
"value": "attribute 1 Value",
},
{
"name": "attribute 2",
"value": "attribute 2 Value",
},
]
}
{
"id": 1,
"name": "Item Name",
"attributes": [
{
"name": "attribute 1",
"values": [
"value 1",
"value 2"
]
},
{
"name": "attribute 2",
"values": [
"value 1",
"value 2"
]
},
]
}
foreach ($product->features as $feature) {
$feature->name
foreach ($feature->values as $value) { //
$value->name //
} //
}