Working on API project. What's wrong here.
Error shows:
Illegal string offset 'socials'
on using foreach
"data":{
"game":{
"name": "some game",
"id": "1",
"description": "some description",
"websiteUrl": "https://website1",
"socials": [
{
"name": "r/product",
"url": "https://website2/r/product/",
"type": "reddit"
},
{
"name": "item/product",
"url": "https://github.com/item/product",
"type": "github"
}
}
}
//controller side
..........................
.......................
return view('page', ['collection' => $collection['data']]);
//blade side
@foreach ($collection['game'] as $item)
{{$item['socials']['name']}}
@endforeach