PHPackages                             zoparga/review-rateable - 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. zoparga/review-rateable

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

zoparga/review-rateable
=======================

Rating system for Laravel

1.0.0(5y ago)027MITPHP

Since Jan 11Pushed 5y ago1 watchersCompare

[ Source](https://github.com/zoparga/laravel-review-rateable)[ Packagist](https://packagist.org/packages/zoparga/review-rateable)[ RSS](/packages/zoparga-review-rateable/feed)WikiDiscussions master Synced yesterday

READMEChangelog (1)DependenciesVersions (2)Used By (0)

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

[](#installation)

First, pull in the package through Composer.

```
composer require zoparga/reviewrateable
```

And then include the service provider within `app/config/app.php`. (Skip this step if you are on Laravel 5.5 or above)

```
'providers' => [
    zoparga\ReviewRateable\ReviewRateableServiceProvider::class
];
```

At last you need to publish and run the migration.

```
php artisan vendor:publish --provider="zoparga\ReviewRateable\ReviewRateableServiceProvider" && php artisan migrate

```

---

### Setup a Model

[](#setup-a-model)

```
