21/05
2014
A Laravel 4 package for webshoporder, (*1)
Add the following to you composer.json file, (*2)
"agriya/webshoporder": "dev-master"
Run composer update, (*3)
Add the following to app/config/app.php, (*4)
'Agriya\Webshoporder\WebshoporderServiceProvider',
Publish the config, (*5)
php artisan config:publish agriya/webshoporder
Run the migration, (*6)
php artisan migrate --package="agriya/webshoporder"
Add the following to app/routes.php, (*7)
Route::any('checkout', 'CheckOutController@populateCheckOutItems'); Route::any('checkout/proceed', 'CheckOutController@doCheckOut');