aimeos/aimeos-laravel
Aimeos for Laravel is a professional, ultra-fast ecommerce package you can install in minutes. Full-featured for shops and marketplaces: multi-vendor/channel, subscriptions, vouchers/discounts, 100+ payment gateways, admin UI, REST/GraphQL APIs, and SEO-ready frontend.
Start by installing Aimeos in an existing Laravel app using Composer. Require aimeos/aimeos-laravel (e.g., ~2025.10 for Laravel 10/11/12), run composer update -W, then execute:
php artisan vendor:publish --tag=config --tag=public
php artisan migrate
php artisan aimeos:setup --option=setup/default/demo:1
Ensure your .env uses a supported DB (MySQL ≥5.7.8, PostgreSQL, etc.), not SQLite. Set up Laravel Breeze/Jetstream first—Aimeos integrates with Laravel’s auth but requires correct route naming (e.g., avoid /profile conflict by renaming to /profile/me). First use case: quickly spin up a production-ready shop frontend/backend in minutes, with demo products pre-loaded.
@aimeos('shop')) or routes (/shop). Use @aimeos('admin') to embed the full admin backend anywhere (e.g., yoursite.com/admin)./rest) or GraphQL admin API (/graphql/admin) for headless setups (e.g., Vue/React SPAs). The headless distribution simplifies this.resources/views/vendor/aimeos/extends pattern (e.g., extends \Aimeos\Shop\Controller\AccountController)config/shop.php shops array—each with its own currency, locale, pricing, and vendors.vendor extension to build marketplaces (e.g., vendor dashboard, own inventory, separate payouts) via aimeos:setup --option=setup/default/vendors:1.utf8mb4 default key length issues cause "Specified key was too long" errors. Fix by switching to utf8 + utf8_unicode_ci in config/database.php before running migrate./profile route overrides Aimeos’s aimeos_shop_account. Rename routes in routes/web.php to /profile/me (and update controller references).config/shop.php is auto-generated on vendor:publish --tag=config—never edit the package’s original config. Use aimeos:setup to regenerate if needed.CACHE_STORE=redis) for catalog/product lists. Use aimeos:cache:warmup in deployment scripts to pre-fill caches.Composer::join script hook in composer.json auto-links Aimeos assets—don’t remove it. To override services, use Laravel’s app()->bind() in AppServiceProvider.locale.orientation to rtl in config/shop.php—update language files under lang/vendor/aimeos/.How can I help you explore Laravel packages today?