我的购物车值未存储在laravel的购物车会话中

时间:2020-01-23 11:53:21

标签: php laravel

  • 我目前正在从事电子商务项目。我无法创建一个 会话或在会话中存储购物车值是以下代码段:
  • 使用的技术:Php Laravel 6

    命名空间App \ Http \ Controllers; 使用App \ Http \ Controllers \ Controller; 使用Illuminate \ Support \ Facades \ DB; 使用Illuminate \ Http \ Request; 使用App \ Product; 使用会话; 使用Auth; CartController类扩展Controller { 公共功能addtocart(Request $ request){ $ id = $ request-> proid; $ quantity = $ request-> quantity; $ product = Product :: find($ id); $ cart = $ request-> session()-> get('cart'); if(isset($ cart [$ product ['Product_ID']])): $ cart [$ product ['Product_ID']] ['qty'] + = $ quantity; 其他: $ cart [$ product ['Product_ID']] = $ product; $ cart [$ product ['Product_ID']] ['qty'] = $ quantity; 万一; 会话:: push('cart',$ cart); 返回视图('frontend.cart.addedtocart',compact('product'));
    } }

你能不能请任何人帮助我?

1 个答案:

答案 0 :(得分:0)

我只能推荐您https://github.com/Crinsane/LaravelShoppingcart包裹 它将使您的生活更轻松!!!