soda-framework / voting
This package is abandoned and no longer maintained.
No replacement package was suggested.
Voting packing for Soda CMS
0.4.0
2017-11-22 04:38 UTC
Requires
- soda-framework/cms: >=0.7
This package is not auto-updated.
Last update: 2022-03-15 05:55:47 UTC
README
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