PHPackages                             alariva/laravel-pointable - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. alariva/laravel-pointable

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

alariva/laravel-pointable
=========================

Point system for Laravel 5

v1.0.3(6y ago)21525MITPHPPHP &gt;=5.5.9

Since Feb 4Pushed 6y ago1 watchersCompare

[ Source](https://github.com/alariva/laravel-pointable)[ Packagist](https://packagist.org/packages/alariva/laravel-pointable)[ RSS](/packages/alariva-laravel-pointable/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (1)Versions (5)Used By (0)

[![Latest Stable Version](https://camo.githubusercontent.com/d39f515b5bd3bb652ae12eca9921b670ea5e2e1a010e9f44c3d8fd95e58f3a37/68747470733a2f2f706f7365722e707567782e6f72672f747265786f6c6f67792f706f696e7461626c652f762f737461626c65)](https://packagist.org/packages/trexology/pointable)[![Total Downloads](https://camo.githubusercontent.com/cf478df0dbd812ecbc9c1be9e8838fe9a3fa59f8ca120578feb66588fb0967f6/68747470733a2f2f706f7365722e707567782e6f72672f747265786f6c6f67792f706f696e7461626c652f646f776e6c6f616473)](https://packagist.org/packages/trexology/pointable)[![Latest Unstable Version](https://camo.githubusercontent.com/83731ca3b4859491f9250a9c738b9667853ed2defe09017972bcad43bae3270d/68747470733a2f2f706f7365722e707567782e6f72672f747265786f6c6f67792f706f696e7461626c652f762f756e737461626c65)](https://packagist.org/packages/trexology/pointable) [![License](https://camo.githubusercontent.com/77ff7133bde06f541dfd8d19f29bab9b0af68ce08c6e5ce73f2084562d6d8721/68747470733a2f2f706f7365722e707567782e6f72672f747265786f6c6f67792f706f696e7461626c652f6c6963656e7365)](https://packagist.org/packages/trexology/pointable)

Laravel Pointable
=================

[](#laravel-pointable)

Point Transaction system for Laravel 5

Original Package from [Trexology](https://github.com/Trexology/laravel-pointable)

Installation
------------

[](#installation)

First, pull in the package through Composer.

```
composer require alariva/laravel-pointable
```

And then include the service provider within `app/config/app.php`.

```
'providers' => [
    Alariva\Pointable\PointableServiceProvider::class
];
```

At last you need to publish and run the migration.

```
php artisan vendor:publish --provider="Alariva\Pointable\PointableServiceProvider" && php artisan migrate

```

---

### Setup a Model

[](#setup-a-model)

```
