laravelshoppingcart icon indicating copy to clipboard operation
laravelshoppingcart copied to clipboard

Shopping Cart Implementation for Laravel Framework

Results 138 laravelshoppingcart issues
Sort by recently updated
recently updated
newest added

In Quebec Canada, we have two kinds of taxes GST 9.975%+ QST 5% but if I apply two conditions the calculation is wrong because it should be subtotal*(1+ 0.0975+0.05), but...

Hi i make a cart with ajax, sometimes I increase, decrease or delete(especially when i click very fast) and the cart dont save the request ! laravel => `public function...

Suppose I want to create separate cart instance with same storage ( Session based ). Is it possible? If so then please tell me how to do that as I...

First I'm not sure if this is the right place for discussions/questions Second I want to apply an item condition (Per-Item Bases) only one only one time for a row,...

I tried use database way for saving my carts but laravelshoppingcart start write incorrect info to database. See code example: `SQLSTATE[HY000]: General error: 1364 Field 'ip' doesn't have a default...

I have created this function inside CartController ``` private $cart_id; public function __construct() { $this->cart_id = \Cookie::get('cart'); if ($this->cart_id) { } else { $this->cart_id = uniqid(); $this->setCartCookie(); } } public...

HI I think it is necessary to have api end for the cart. I am using database storage. In that case how I can call and retrieve cart details or...

Hey man, first of all thanks for the job, its rly helpful. I think I'm not understanding well how to the db storage works so if you can please elaborate...

support for Laravel 8?

It works on Laravel 8 and 9, but it was not documented in the readme. Typos in "$Products" variables fixed too! Thanks!