I tried using data_get() function, But it doesn't return me anything.
Can any one help me to access data array from the below object in laravel??
Any information regarding this would be appreciated. Thank You!!
$data = data_get($object,'data');
$object = {
"success": true,
"message": "Something....",
"data": [
{
"id": 9,
"name": "name1"
},
{
"id": 10,
"name": "name2"
}
]
}