我试图在我的前端检索从管理面板 Lararel Voyager 插入的多张照片,我尝试了这个解决方案,但它仍然显示错误。代码如下:
我得到这个错误:
如果有人可以提供帮助,我将不胜感激。
您的代码错误使用波纹管代码显示图像
@foreach(json_decode($sld->image, true) as $image)
<img src="{{ Voyager::image($image) }}" />
@endforeach
这是我的控制器
public function show()
{
$show = Product::query()
return view('index_event.yourview')->with('shows',$show);
}
你的观点
@if(isset($shows->img))
<?php $images = json_decode($shows->img); ?>
@if($images != null)
@foreach($images as $image)
<img src="{{ Voyager::image( $image ) }}" >
@endforeach
@endif
@endif
让测试