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

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

tamunoemi/laravel-review-rateable
=================================

Review &amp; Rating system to support Laravel 10,11,12 forked from https://github.com/codebyray/laravel-review-rateable

1.0.3(2mo ago)1136MITPHPPHP ^7.4|^8.0

Since Apr 1Pushed 2mo ago1 watchersCompare

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

READMEChangelogDependencies (4)Versions (4)Used By (0)

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

[](#laravel-review-rateable)

[![Packagist Downloads](https://camo.githubusercontent.com/59c320089b529072f34529d9af5be10dc2aac89afd9f2ac2224f7c8a80dfefaf/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f636f646562797261792f6c61726176656c2d7265766965772d7261746561626c65)](https://camo.githubusercontent.com/59c320089b529072f34529d9af5be10dc2aac89afd9f2ac2224f7c8a80dfefaf/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f636f646562797261792f6c61726176656c2d7265766965772d7261746561626c65) [![GitHub](https://camo.githubusercontent.com/31d25dc3334f395b6f7f4b9c7b5e45ad94af9f9c2bcf347be2af3d6db1609249/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f636f646562797261792f6c61726176656c2d7265766965772d7261746561626c65)](https://camo.githubusercontent.com/31d25dc3334f395b6f7f4b9c7b5e45ad94af9f9c2bcf347be2af3d6db1609249/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f636f646562797261792f6c61726176656c2d7265766965772d7261746561626c65) [![GitHub release (latest SemVer)](https://camo.githubusercontent.com/a05d9882a558c021b5bdf98cb04de9215fde65f5bf1930c785a1fd05fdc224d3/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f762f72656c656173652f636f646562797261792f6c61726176656c2d7265766965772d7261746561626c65)](https://camo.githubusercontent.com/a05d9882a558c021b5bdf98cb04de9215fde65f5bf1930c785a1fd05fdc224d3/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f762f72656c656173652f636f646562797261792f6c61726176656c2d7265766965772d7261746561626c65) [![TravisCI](https://camo.githubusercontent.com/a477654b14f8482aee11be27337452789058aedd0683c6525b4a6d8292724471/68747470733a2f2f6170692e7472617669732d63692e636f6d2f636f646562797261792f6c61726176656c2d7265766965772d7261746561626c652e7376673f6272616e63683d6d6173746572)](https://camo.githubusercontent.com/a477654b14f8482aee11be27337452789058aedd0683c6525b4a6d8292724471/68747470733a2f2f6170692e7472617669732d63692e636f6d2f636f646562797261792f6c61726176656c2d7265766965772d7261746561626c652e7376673f6272616e63683d6d6173746572)

Review Rateable system for laravel 6, 7, 8 &amp; 9. 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 codebyray/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)

```
