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

README

A sweet voting platform for Soda CMS

###Installation

  1. Firstly follow the instructions to install Soda CMS at: https://github.com/soda-framework/cms

  2. Require this in your composer.json file

    composer require soda-framework/voting
  1. 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,
    ]
  1. 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