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

ActiveLibrary

mprince/laravel-pointable
=========================

Point system for Laravel 8

1.0(5y ago)3323MITPHPPHP ^7.4|^8.0

Since Feb 28Pushed 5y ago1 watchersCompare

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

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

[![Latest Stable Version](https://camo.githubusercontent.com/56e83c5320e1e6720374da51c07288d45c8100a497721e24403f661536d9fce5/68747470733a2f2f706f7365722e707567782e6f72672f6d7072696e63652f6c61726176656c2d706f696e7461626c652f762f737461626c65)](https://packagist.org/packages/mprince/laravel-pointable)[![Total Downloads](https://camo.githubusercontent.com/f78994701c0e364314bf002fbdfb9f7645dc2cf9f1dd5b3b69f1a6ee9ba30be9/68747470733a2f2f706f7365722e707567782e6f72672f6d7072696e63652f6c61726176656c2d706f696e7461626c652f646f776e6c6f616473)](https://packagist.org/packages/mprince/laravel-pointable)[![Latest Unstable Version](https://camo.githubusercontent.com/f2312df8697ed829e303c26a13e8e0861b53334312d5aae0e9a5f779b757693c/68747470733a2f2f706f7365722e707567782e6f72672f6d7072696e63652f6c61726176656c2d706f696e7461626c652f762f756e737461626c65)](https://packagist.org/packages/mprince/laravel-pointable)[![License](https://camo.githubusercontent.com/1fb4b5a9770fdbf62c20a371cf9e467bacfc47a2f135843f6bf6c040d7532bd2/68747470733a2f2f706f7365722e707567782e6f72672f6d7072696e63652f6c61726176656c2d706f696e7461626c652f6c6963656e7365)](https://packagist.org/packages/mprince/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 mprince/laravel-pointable
```

For Laravel 7
-------------

[](#for-laravel-7)

```
composer require mprince/laravel7-pointable
```

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

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

At last you need to publish.

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

```

and then run the migration.

```
php artisan migrate

```

---

### Setup a Model

[](#setup-a-model)

```
