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

ActiveLibrary

kivicms/laravel-review-rateable
===============================

Review &amp; Rating system for Laravel 8

2.0.0(4y ago)152MITPHPPHP ^8.0

Since Nov 23Pushed 4y ago1 watchersCompare

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

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

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

[](#laravel-review-rateable)

Review Rateable system for laravel 5, 6, 7 &amp; 8. 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 kivicms/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' => [
    Kivicms\ReviewRateable\ReviewRateableServiceProvider::class
];
```

Publish the configuration file:

```
php artisan vendor:publish --provider="Kivicms\ReviewRateable\ReviewRateableServiceProvider" --tag="config"
```

At last you need to publish and run the migration.

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

Run the migration

```
php artisan migrate

```

---

### Setup a Model

[](#setup-a-model)

```
