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

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

gettoolset/laravel-review-rateable
==================================

Review &amp; Rating system for Laravel 5, 6, 7 and 8

1.2(5y ago)04MITPHPPHP ^7.3CI failing

Since Oct 26Pushed 5y agoCompare

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

READMEChangelog (1)Dependencies (4)Versions (6)Used By (0)

Laravel Review Rateable
=======================

[](#laravel-review-rateable)

Review Rateable system for laravel 5. and 6. You can rate your models by:

- Overall Rating
- Customer Service Rating
- Quality Rating
- Friendly Rating
- Price Rating

You can also set whether the model being rated is recommended.

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

[](#installation)

First, pull in the package through Composer.

```
composer require gettoolset/laravel-review-rateable

```

And then include the service provider within `app/config/app.php`. Note: If you are running Laravel 5.5+ this will be auto loaded for you.

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

At last you need to publish and run the migration.

```
php artisan vendor:publish --provider="Codebyray\ReviewRateable\ReviewRateableServiceProvider" --tag="migrations"

```

Run the migration

```
php artisan migrate

```

---

### Setup a Model

[](#setup-a-model)

```
