I'm trying to output the names out of an array
when I output them as a {!! !!} i get the following error "Array to string conversion in .." but with a @dump i get the following data:
array(2){[0]=> object(stdClass)#7052(1){["data"] => string(5)"data1"} [1]=> object(stdClass)#7049(1){["data"] =>string(5)"data2"}}
I've already tried:
@foreach($items as $item)
{!! $item !!}
@endforeach
but this did not solve the ploblem
I'm using php blade to solve this problem