laravelshoppingcart
laravelshoppingcart copied to clipboard
Shopping Cart Implementation for Laravel Framework
_Using this package with Laravel 5.8:_ I'm looking for a solution that how I can relate the whole **Cart** with a **Model**? Let's say I have an **Order** attached with...
Hello, I am using associatedModel to add cart, below I show my code any returning array from CartCollection Object. But I can't get MenuSectionItem value, he return error, please tell...
Hi, I have created a Card Facade & Cart class extending DarryldecodeCart like below: use Illuminate\Support\Facades\Facade; ``` class Cart extends Facade { /** * Get the registered name of the...
Sir One question.... As you have used the `add to cart` operation. and for add to cart operation the page reload. If I want to do so without reloading the...
Hi there i have created custom instances but how can i insert user id from Service Provider ? ``` public function register() { $this->app->singleton('wishlist', function($app) { $storage = $app['session']; $events...
Hi, I have trouble with checking if user already used coupon code, currently user can use same coupon code over and over. How can I check if user already used...
how come i get this error when I try to get value from API? here's my code `return response()->json([ 'content' => \Cart::getContent(), 'subTotal' => \Cart::getSubTotal(), 'totalQty' => \Cart::getTotalQuantity() ]);` I...
Can i apply cartcondition only for one quantity for item? Let say, id 1, buy 2 quantities, i want to set cartcondition only for 1 quantity is it possbile?
i need to pass float value like 0.1 , 0.2 and min 1 in validation is causing an exception
I'm building an ecommerce where my client have a policy of free shipping after the total order crosses a certain price, how do I achieve this?