Download the PHP package fastwebmedia/laravel-vouchering without Composer
On this page you can find all versions of the php package fastwebmedia/laravel-vouchering. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download fastwebmedia/laravel-vouchering
More information about fastwebmedia/laravel-vouchering
Files in fastwebmedia/laravel-vouchering
Package laravel-vouchering
Short Description A simple vouchering system for Laravel
License MIT
Informations about the package laravel-vouchering
Laravel Voucher Package
A simple voucher package to allow for the generation of unique vouchers across multiple campaigns, packaged up with create, load, redeem, expire, and delete methods.
Installation (Laravel 5)
Here are the steps you need to take to install the package on Laravel 5. Click here for Laravel 4.
Add the package (v2.*) to your composer.json require.
Run composer update.
Add the service provider to providers array in app.php config.
Now run the publish command to copy up the package migrations for the voucher and campaign tables and then migrate to your hearts content.
All done! You are now ready to set up your first voucher campaign!
Setting up a new Campaign
Setting up a new voucher campaign is made easy using the package's campaign:create artisan command. Simply run in the terminal and follow the prompts.
Check your database, you should now have a new campaign.
Installation (Laravel 4)
Here are the steps you need to take to install the package on Laravel 4. Click here for Laravel 5.
Add the package (v1.*) to your composer.json require.
Run composer update.
Add the service provider to providers array in app.php config.
From the terminal run the package migrations.
All done! You are now ready to set up your first voucher campaign!
Coming Soon...
More documentation to follow, covering all package methods for voucher creation, loading and more...