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

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

adiliogobira/laravel-review-rateable
====================================

Review &amp; Rating system for Laravel

022PHP

Since Feb 27Pushed 5y ago1 watchersCompare

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

READMEChangelogDependenciesVersions (1)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)

```
