Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

codedevloper13's avatar

Shopping cart package for Laravel 11 ?

Hello Developers;

I am using Laravel 11 and I need a shopping cart package that works with Laravel 11 and is supported by Laravel 11. I have searched, but I couldn't find any package. If you know of any package that supports Laravel 11, please let me know.

0 likes
5 replies
jlrdw's avatar

Have you searched also on Github? There are some there.

1 like
PovilasKorop's avatar

From what I've seen, many shopping cart packages are semi-abandoned.

And I would say the reason is they don't provide much more functionality than you would achieve yourself by saving the Cart data either in the Session or in the Database.

So I would advise to build those Cart::add() methods yourself, with your specific functionality, it will also allow you to be in full control.

1 like
kenplayable's avatar

I found this one, it support Laravel 11. I'm using it also in my POS Project. Hope it helps.

https:// github. com/anayarojo/laravel-shopping-cart

1 like
dqtn1206's avatar

@kenplayable Hello, I am currently using but the declaration seems different when I use use Gloudemans\Shoppingcart\Cart;. Then Cart::add('293ad', 'Product 1', 1, 9.99); does not cause an error. However, if I use use Gloudemans\Shoppingcart\Facades\Cart, it reports an error with ::add. So what is the correct declaration for it?

Please or to participate in this conversation.