webbingbrasil / laravel-points
A basic points implementation for gamification system in laravel.
Installs: 1 045
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: >=5.6.4|^7.0
- illuminate/database: >=5.3
- illuminate/support: >=5.3
README
A basic points implementation for gamification system in laravel
Installation
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
Usage
Add our HasPoints
trait to your model.
<?php namespace App\Models; use WebbingBrasil\Points\Traits\HasPoints; class User extends Model { use HasPoints; // ... } ?>