I'm developing a website with Laravel where I've a JSON response from server like below:
[{"id":1,"user_id":"1","patient_name":"kk","age":"44","sex":"Male"},
{"id":2,"user_id":"1","patient_name":"noor","age":"7","sex":"Male"},
{"id":3,"user_id":"1","patient_name":"noor","age":"44","sex":"Male"}]
How can I iterate through this JSON object so that I can show the data in a table with patient_name, age, sex column in blade view file?