webbuildsnl/laracart is a Laravel package for a simple cart for laravel.
It currently has 1 GitHub stars and 18 downloads on Packagist (latest version 12.1).
Install it with composer require webbuildsnl/laracart.
Discover more Laravel packages by webbuildsnl
or browse all Laravel packages to compare alternatives.
Last updated
| Laravel | laracart | | :---------------- | :--------- | | 5.1 | 5.2 | 5.3 | 1.1 | 1.2 | | 5.4+ | 1.* |
Install the package through Composer. Edit your project's composer.json file by adding:
{
"require": {
........,
"lukepolo/laracart": "1.11.*"
}
}
If using 5.4 you will need to include the service providers / facade in app/config/app.php:
LukePOLO\LaraCart\LaraCartServiceProvider::class,
Include the Facade :
'LaraCart' => LukePOLO\LaraCart\Facades\LaraCart::class,
Copy over the configuration file by running the command:
php artisan vendor:publish --provider='LukePOLO\LaraCart\LaraCartServiceProvider'
To Contribute to documentation use this repo :
https://github.com/lukepolo/laracart-docs
MIT