I have problem. I can't print value of $value->working type unicode in foreach but that not working and i have notification htmlentities() expects parameter 1 to be string, array given
I'm using Json. When i echo dd($levelResult) then
array:1 [▼
0 => "Đại Học"
]
if i echo $levelResult[0] then i have notification Invalid argument supplied for foreach()
@foreach( $search as $key => $value)
@if(json_decode($value->working,JSON_BIGINT_AS_STRING)[0] != " ")
@foreach(json_decode($value->working) as $key => $levelResult)
<p>{{ $levelResult }} </p>
@endforeach
@else
{{ " " }}
@endif
@endforeach