Skip to main content
The Laravel ecommerce & shop framework
Ultra fast, free Open Source and scalable to #gigacommerce
Quick Start At GitHub

Highlights
Take a look at the Aimeos demo setups

The simplest way to ecommerce in Laravel
- composer create-project aimeos/aimeos myshop

Showcases

Build your custom Laravel ecommerce easily
- use \Aimeos\Shop\Facades\Product;
- $items = Product::uses(['text', 'media', 'price'])
- ->catetory(123)->text('sneaker')
- ->sort('name')->slice(0, 48)->search();
- use \Aimeos\Shop\Facades\Catalog;
- $catalog = Catalog::uses(['text', 'media']);
- $tree = $catalog->getTree();
- $list = $catalog->getPath(123);
- use \Aimeos\Shop\Facades\Basket;
- use \Aimeos\Shop\Facades\Product;
- $item = Product::uses(['price'])->find('abc');
- $cart = Basket::addProduct($item)->get();