0

I tried but how to iterate this data from this object please help me. I serch but not succeed to iterate this.I tried but how to iterate this data from this object please help me.




$data [ 'center_list' ] => {
    "status": 1,
    "message": "Successful...",
    "data": [
        {
            "staff_id": "114",
            "staff_name": "DEEP SINGH",
            "level_type_id": "6",
            "level_type_name": "Center",
            "level_id": "2393",
            "level_name": "BORADHI SANGEETA JLG 3903",
            "from_date": "2019-07-11",
            "to_date": null
        },
        {
            "staff_id": "114",
            "staff_name": "DEEP SINGH",
            "level_type_id": "6",
            "level_type_name": "Center",
            "level_id": "2351",
            "level_name": "BADODIYA SANJU JLG 3902",
            "from_date": "2019-07-12",
            "to_date": null
        },
    ]
}

1 Answers1

0

You can try

json_decode($data['data']);

This will return the result that you can iterate through.