PHPackages                             outhebox/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. outhebox/laravel-pointable

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

outhebox/laravel-pointable
==========================

Point system for Laravel

v1.0.7(5y ago)21271MITPHPPHP &gt;=7.2

Since Feb 4Pushed 5y agoCompare

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

READMEChangelog (5)Dependencies (1)Versions (7)Used By (0)

[![Latest Stable Version](https://camo.githubusercontent.com/4d5e5f614697ed99a69c8ee8e358b36415ab559e468786e8745a5cc80f77dc92/68747470733a2f2f706f7365722e707567782e6f72672f6f75746865626f782f6c61726176656c2d706f696e7461626c652f762f737461626c65)](https://packagist.org/packages/outhebox/laravel-pointable)[![Total Downloads](https://camo.githubusercontent.com/289060c0737a63ed0f1262737bbd5f43b384972afdb309a5c3521a18770f5e36/68747470733a2f2f706f7365722e707567782e6f72672f6f75746865626f782f6c61726176656c2d706f696e7461626c652f646f776e6c6f616473)](https://packagist.org/packages/outhebox/laravel-pointable)[![Latest Unstable Version](https://camo.githubusercontent.com/b1e9768d9884f0583d631dec805180e481315b8c8071deeb7916bfe6e18cfdaa/68747470733a2f2f706f7365722e707567782e6f72672f6f75746865626f782f6c61726176656c2d706f696e7461626c652f762f756e737461626c65)](https://packagist.org/packages/outhebox/laravel-pointable) [![License](https://camo.githubusercontent.com/ba8422eba53788741eceea636494cd38230566872b53b64f6aadf36deebbc5ba/68747470733a2f2f706f7365722e707567782e6f72672f6f75746865626f782f6c61726176656c2d706f696e7461626c652f6c6963656e7365)](https://packagist.org/packages/outhebox/laravel-pointable)

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

[](#laravel-pointable)

Point Transaction system for Laravel Framework

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

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

[](#installation)

First, pull in the package through Composer.

```
composer require outhebox/laravel-pointablee
```

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

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

At last you need to publish and run the migration.

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

```

---

### Setup a Model

[](#setup-a-model)

```
