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

This package is not auto-updated.

Last update: 2024-04-13 14:23:44 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');