I stored array of JSON in mysql as a string
[{"id": 1, "mark": 5}, {"id": 2, "mark": 3}, {"id": 3, "mark": 2}]
When I try to use it
@foreach ($places as $place)
@foreach ($place->rates as $rate)
{{var_dump($rate->marks)}}
@endforeach
@endforeach
There is a problem. $rate->marks is a string. How shoul I decode it to array?
UPD
of course I tried to use json_decode, but it returns error
htmlentities() expects parameter 1 to be string, array given
SOLVED
I', stupid. Problem was not in json_decode. I tried to print result with {{ }} which needs string as argument.