Patrick

Results 90 comments of Patrick

Hey, would you mind also updating the included tests?

If i get you right then its not a bug but a feature 😄 https://github.com/Crinsane/LaravelShoppingcart/blob/f460ab7312cce32cb428cf39a500a2d16600b1d6/src/Cart.php#L399 https://github.com/Crinsane/LaravelShoppingcart/blob/f460ab7312cce32cb428cf39a500a2d16600b1d6/src/Cart.php#L400 The general workflow of this package is that the cart is either in DB...

You can find a list of maintained forks [here ](https://github.com/Crinsane/LaravelShoppingcart/wiki/Maintained-Forks)in the wiki of this repository. Please leave your fork there if you maintain one.

I hope i get it right^^: If subtotal is `price * qty - tax` then shouldn't it be `12 * 0.8 - (12 * 0.8) * 0.2 `? The subtotal...

Sorry if i get you wrong but why do you want to include the tax of a full item (1qty) when you set it to 0.8 qty? Are you sure...

Cart is saved in the databse or session. You could save it before login (write to db) and then load it after login (delete & load to session).

> > Cart is saved in the databse or session. You could save it before login (write to db) and then load it after login (delete & load to session)....

I was going to do that on my vacation when i have some more time but it seems like there is a need. @keleshteri Can you please change the source...

I have now created a new PR for the correct branch: #571

The row id is the id of your item + options and allows to merge items with the same type and options. This is per design, you would have to...