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

ActiveLibrary

neonturk/laravel-pointable
==========================

Point system for Laravel 8

v0.1.0(5y ago)01421MITPHPPHP ^7.4|^8.0

Since Mar 31Pushed 5y ago1 watchersCompare

[ Source](https://github.com/neonturk/laravel-pointable)[ Packagist](https://packagist.org/packages/neonturk/laravel-pointable)[ RSS](/packages/neonturk-laravel-pointable/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (1)Versions (2)Used By (0)

[![Latest Stable Version](https://camo.githubusercontent.com/03d8f2e5d52355da59fb278387a6dfc440d09ec4cd0c005bb2b7a17069a566de/68747470733a2f2f706f7365722e707567782e6f72672f6e656f6e7475726b2f6c61726176656c2d706f696e7461626c652f762f737461626c65)](https://packagist.org/packages/neonturk/laravel-pointable)[![Total Downloads](https://camo.githubusercontent.com/406d6542ee15596c219ac5d8ee9468e862d2feb0cc5077c370a0737785efa26b/68747470733a2f2f706f7365722e707567782e6f72672f6e656f6e7475726b2f6c61726176656c2d706f696e7461626c652f646f776e6c6f616473)](https://packagist.org/packages/neonturk/laravel-pointable)[![Latest Unstable Version](https://camo.githubusercontent.com/52a6d40fb99baed0d72a2aba06e6f38459f4f73299d1fdfeaf761551672e52d8/68747470733a2f2f706f7365722e707567782e6f72672f6e656f6e7475726b2f6c61726176656c2d706f696e7461626c652f762f756e737461626c65)](https://packagist.org/packages/neonturk/laravel-pointable)[![License](https://camo.githubusercontent.com/656dc4a24142ef7a453cb8d1d28737c69926084486367a65cfab67bf8fc66203/68747470733a2f2f706f7365722e707567782e6f72672f6e656f6e7475726b2f6c61726176656c2d706f696e7461626c652f6c6963656e7365)](https://packagist.org/packages/neonturk/laravel-pointable)

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

[](#laravel-pointable)

Point Transaction system for Laravel 8.\*

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

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

[](#installation)

First, pull in the package through Composer.

For Laravel 8
-------------

[](#for-laravel-8)

```
composer require neonturk/laravel-pointable
```

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

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

At last you need to publish.

```
php artisan vendor:publish --provider="NeonTurk\Pointable\PointableServiceProvider"

```

and then run the migration.

```
php artisan migrate

```

---

### Setup a Model

[](#setup-a-model)

```
