agriya / webshoporder
There is no license information available for the latest version (dev-master) of this package.
dev-master
2014-05-21 07:54 UTC
Requires
- php: >=5.3.0
- illuminate/support: 4.1.*
This package is not auto-updated.
Last update: 2024-11-09 17:40:23 UTC
README
A Laravel 4 package for webshoporder
Installation
Add the following to you composer.json file
"agriya/webshoporder": "dev-master"
Run composer update
Add the following to app/config/app.php
'Agriya\Webshoporder\WebshoporderServiceProvider',
Publish the config
php artisan config:publish agriya/webshoporder
Run the migration
php artisan migrate --package="agriya/webshoporder"
Add the following to app/routes.php
Route::any('checkout', 'CheckOutController@populateCheckOutItems');
Route::any('checkout/proceed', 'CheckOutController@doCheckOut');