问题描述
我正在使用Melihovv ShoppingCart。我想在购物车中显示所有产品,但不能。它显示了页面,但没有显示产品。
这是我的代码
public function store(Request $request)
{
$cartItem = Cart::add($request->id,$request->name,$request->price,1);
return view('pages.cart')->with([
'cartItem' => $request->cartItem
]);
}
这是我的观点:
@if (!empty($cartItem) && count($cartItem) > 0)
@foreach ($cartItem as $product)
{{ $product }}
@endforeach
@endif
解决方法
要显示购物车中的内容,我认为您应该使用
Cart::content()