Wallogit.com
2017 © Pedro Peláez
Basic PHP Shopping Cart, (*1)
Laravel package, (*2)
Tools used:, (*3)
Composer package on Packagist: https://packagist.org/packages/dersam/carty, (*4)
Add to composer.json require:, (*5)
"dersam/carty": "dev-master", (*6)
Install composer packages, (*7)
composer install, (*8)
Add the Carty service provider to the provider array in app/config/app.php, (*9)
'Dersam\Carty\CartyServiceProvider', (*10)
Publish the public assets, (*11)
php artisan asset:publish, (*12)
Create the database tables (will use your application's connection string from app/config/database.php), (*13)
php artisan migrate --package="dersam/carty", (*14)
Run the database seed if you want the demo data, (*15)
php artisan db:seed --class=CartyDemoSeed, (*16)