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

anam's avatar
Level 3

Simple shopping cart

Hi guys, I am looking for a Laravel compatible shopping cart package for my next project. Do guys know any decent package with good documentation?

Thanks in advance.

0 likes
12 replies
fraserk's avatar

I've use LaravelShoppingcart on 2 different projects, it was really easy to work it.

1 like
anam's avatar
anam
OP
Best Answer
Level 3

I developed one. Very simple Api. It's support both Laravel 4 and Laravel 5 out of the box.

https://github.com/anam-hossain/phpcart

example:

Cart::add([
    'id'       => 1001,
    'name'     => 'Skinny Jeans',
    'quantity' => 1,
    'price'    => 90
]);
2 likes
ldiebold's avatar

I'm new to Laravel (and programming in general) and was dreading the day I'd have to add a shopping cart. Literally took 30 minutes with LaravelShoppingcart, can't believe how easy it was!

alexmansour's avatar

Hi all, I have Laravel 5.1 project where I need to offer shopping cart for guest users. Any packages that you recommend for such case?

Thanks.

alexmansour's avatar

Thanks for your reply, I'm going to try LaravelShoppingcart.

Please or to participate in this conversation.