我正在尝试将产品图片的路径从我的数据库保存到购物车,例如
/images/menu/uploads/thumb_imageDecliciousCrumpets7579adcb6ca553.jpg,
但是当我保存路径然后尝试访问它时,图像会中断,因为路径现在变为
[ “/图片/菜单/上传/ thumb_imageDecliciousCrumpets7579adcb6ca553.jpg”]
我的控制器代码
$image=\App\Product_image::where('product_id','=',$request->id)->where('is_featured','=','1')->pluck('thumb_path');
Cart::add($request->id,$request->title,1,$price,['image'=>$image]);
return Response::json($image,200);
我的观看代码:
@foreach($cart as $cart_item)
<td class="product-thumbnail">
<a href="single-product.html"><img width="145" height="145" alt="{{$cart_item->name}}" class="shop_thumbnail" src="{{$cart_item->options->image}}"></a>
</td>
@endforeach