Shopping Cart Error (LaravelShoppingcart)

2020-05-07 10:06发布

I am using Crinsane/LaravelShoppingcart with Laravel 5. When I try to add items to Cart then it will display error

Non-static method Gloudemans\Shoppingcart\Cart::add() should not be called statically, assuming $this from incompatible context

Any help for resolve this..

1条回答
beautiful°
2楼-- · 2020-05-07 10:33

Add this line at the top of your PHP file:

use Cart;

instead of this:

use Gloudemans\Shoppingcart\Cart;
查看更多
登录 后发表回答