21/05
2014
A Laravel 4 package for addtocart, (*1)
Add the following to you composer.json file, (*2)
"agriya/addtocart": "dev-master"
Run composer update, (*3)
Add the following to app/config/app.php, (*4)
'Agriya\Addtocart\AddtocartServiceProvider',
Publish the config, (*5)
php artisan config:publish agriya/addtocart
Run the migration, (*6)
php artisan migrate --package="agriya/addtocart"
Add the following to app/routes.php, (*7)
Route::controller('cart', 'CartController');