A sweet voting platform for Soda CMS
###Installation
-
Firstly follow the instructions to install Soda CMS at: https://github.com/soda-framework/cms
-
Require this in your
composer.json
file
composer require soda-framework/voting
- Integrate Soda Voting into laravel by adding
Soda\Voting\Providers\VotingServiceProvider::class
in the providers array in/config/app.php
'providers' => [
Soda\Providers\SodaServiceProvider::class,
Soda\Voting\Providers\VotingServiceProvider::class,
]
- Run the database migrations
php artisan migrate
to generate the necessary tables
##Configuration //TODO
##Voting endpoints
There a number of api end points available to help with the voting process,
found at routes/api.php
.
##Creating reports //TODO