A basic points implementation for gamification system in laravel
Install package via composer
composer require "webbingbrasil/laravel-points=1.0.0"
Next, if you are using Laravel prior to 5.5, register the service provider in the providers array of your config/app.php configuration file:
WebbingBrasil\Points\Providers\PointServiceProvider::class,
To get started, you'll need to publish the vendor assets and migrate:
php artisan vendor:publish --provider="WebbingBrasil\Points\Providers\PointServiceProvider" && php artisan migrate
Add our HasPoints
trait to your model.
<?php namespace App\Models;
use WebbingBrasil\Points\Traits\HasPoints;
class User extends Model
{
use HasPoints;
// ...
}
?>