douzizang7783 2017-05-03 08:24
浏览 40
已采纳

试图弄清楚为什么我的foreach导入不起作用

I've on my view:

@foreach($cart_item->where('shopping_cart_id','37') as $cart) 

 <li class="clearfix">{{$cart->prize_id}}</li>

@endforeach

Can somebody help me figure out whats wrong with my foreach loop?

I have come down to just trying to basically displaying the id's but its giving me an php error.

"Undefined variable cart_item", but I did define the variable on the cart controller as so:

$cart_item = ShoppingCartItem::where('shopping_cart_id',$cookie->cart_id)->where('prize_id',$_POST['prize_id'])->first();
  • 写回答

4条回答 默认 最新

  • drv16759 2017-05-03 09:15
    关注

    I think You should do like this

    $cart_item = ShoppingCartItem::where('shopping_cart_id',$cookie->cart_id)->where('prize_id',$_POST['prize_id'])where('shopping_cart_id','37')->get();
    

    and after that use it in your view

    @foreach($cart_item as $cart) 
    
     <li class="clearfix">{{$cart->prize_id}}</li>
    
    @endforeach
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?