I am getting the error undefined property data while trying to access the data array returned from a json response.
{
"data": [
{---},
{---}
],
"links": {---},
"meta": {---}
}
i am accessing the data like this,
$posts->data
just for the record i have tried $posts->data[0]
and "$posts["data"]
but none works.