dbcart
dbcart copied to clipboard
Shopping Cart library for Laravel 5 that uses Database instead of Sessions
Any plans for L6 update?
Hi, Is there any plan to support Laravel 6?
How can we add conditions like coupon or percentage off in the sub total? Is there a way we could store it in database as well?
I am using this package with api when i tried to add item using following code `$cart = App::make('cart'); $cart->addItem([ 'product_id' => 1, 'unit_price' => 100, 'quantity' => 1 ]);`...