我有一个控制器
public function store(Request $request)
{if ($request->input('asc')){
$image = PropertyUser::where('user_id', '=', Auth::user()->id)->get();
foreach($image as $property)
{
$id = $property->property_id;
}
$image_ = Image::where('property_id', $id)->sortBy('description')->get();
return redirect('settings/photos');
我如何使用 $image_
变量重定向并将其显示在我的视图文件中
@foreach ($image_ as $images)
<div class="image-warp"><img src="{{$images->filename}}"
style="width:100px;height:100px;"><br/><span style="color: #1b1e21">{{$images->description}}</span>
</div>
@endforeach
原文由 Adokiye Iruene 发布,翻译遵循 CC BY-SA 4.0 许可协议
你应该试试这个:
更新的答案