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

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

mprince/laravel7-pointable
==========================

Point system for Laravel 7

1190PHP

Since Jun 16Pushed 3y ago1 watchersCompare

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

READMEChangelogDependenciesVersions (1)Used By (0)

[![Latest Stable Version](https://camo.githubusercontent.com/a8c455f22a1f239bd00baa598edd6237670bdf51b5e9657fbd9aedb94a116b88/68747470733a2f2f706f7365722e707567782e6f72672f6d7072696e63652f6c61726176656c372d706f696e7461626c652f762f737461626c65)](https://packagist.org/packages/mprince/laravel7-pointable)[![Total Downloads](https://camo.githubusercontent.com/70b422452d67fa038f0492193c6d1b45891e0674e223a1a1b4d2e695b8deef6e/68747470733a2f2f706f7365722e707567782e6f72672f6d7072696e63652f6c61726176656c372d706f696e7461626c652f646f776e6c6f616473)](https://packagist.org/packages/mprince/laravel7-pointable)[![Latest Unstable Version](https://camo.githubusercontent.com/430c878f38db9b42b7c592436e38ee19d3c1e2a7c968004c93a55f401b9063d7/68747470733a2f2f706f7365722e707567782e6f72672f6d7072696e63652f6c61726176656c372d706f696e7461626c652f762f756e737461626c65)](https://packagist.org/packages/mprince/laravel7-pointable)[![License](https://camo.githubusercontent.com/bf3f3473e6e384a3e1ec308cc46773025a945c051894c4366a7af453c09bbd6b/68747470733a2f2f706f7365722e707567782e6f72672f6d7072696e63652f6c61726176656c372d706f696e7461626c652f6c6963656e7365)](https://packagist.org/packages/mprince/laravel7-pointable)

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

[](#laravel-pointable)

Point Transaction system for Laravel 7.*, 8.*, 9.\*

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)

```
