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

ActiveLibrary

sumantablog/laravel-review-rateable
===================================

Review &amp; Rating system for Laravel

1.1.1(5y ago)1441MITPHPPHP ^7.2

Since Jul 31Pushed 5y ago1 watchersCompare

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

READMEChangelog (2)Dependencies (4)Versions (3)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 sundarocs/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' => [
    Sumantablog\ReviewRateable\ReviewRateableServiceProvider::class
];
```

At last you need to publish and run the migration.

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

```

Run the migration

```
php artisan migrate

```

---

### Setup a Model

[](#setup-a-model)

```
