laravel-voteable
laravel-voteable copied to clipboard
Laravel Voteable
Installation
Require this package, with Composer, in the root directory of your project.
$ composer require artisanry/voteable
To get started, you'll need to publish the vendor assets and migrate:
php artisan vendor:publish --provider="Artisanry\Voteable\VoteableServiceProvider" && php artisan migrate
Usage
Setup a Model
<?php
namespace App;
use Artisanry\Voteable\HasVotes;
use Illuminate\Database\Eloquent\Model;
class User extends Model
{
use HasVotes;
}
Sum of all votes
Vote::sum($user);
Count all votes
Vote::count($user);
Count all up-votes
Vote::countUps($user);
Count all down-votes
Vote::countDowns($user);
Count all votes between two dates
Vote::countByDate($user, '2015-06-30', '2015-06-31');
Up-vote
Vote::up($user);
Down-vote
Vote::down($user);
Testing
$ phpunit
Security
If you discover a security vulnerability within this package, please send an e-mail to [email protected]. All security vulnerabilities will be promptly addressed.
Credits
This project exists thanks to all the people who contribute.
License
Mozilla Public License Version 2.0 (MPL-2.0).