What are you trying to do here:
@foreach($values as $value)
<ul><li>{{$song->title}}</li></ul>
@endforeach
Try:
@foreach($values as $value)
<ul><li>{{$value->title}}</li></ul>
@endforeach
@foreach($values as $value)
<ul><li>{{$song->title}}</li></ul>
@endforeach
the $value contains the data you want to access
do:
@foreach($values as $value)
<ul><li>{{$value->title}}</li></ul>
@endforeach
Hi sir @illuminate3 and @Steve, Yeah I'm done editing but still, the value is blank :( Any help plese :(
hi first try printing data.
<?php dd($values) ?>@foreach($values as $value)
<ul><li>{{$value->title}}</li></ul> @endforeachI doubts no data in values itself.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community