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

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

makav3li94/laravel-review
=========================

Review &amp; Rating system for Laravel 7, 8, 9, 10 &amp; 11

04PHP

Since Dec 8Pushed 1y ago1 watchersCompare

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

READMEChangelog (3)DependenciesVersions (2)Used By (0)

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

[](#laravel-review-rateable)

Review Rateable system for laravel 6, 7, 8 ,9,10,11. You can rate your models by:

- Overall Rating
- Communication Rating
- Quality Rating
- Friendly Rating
- Cost Rating
- TimeManagement Rating
- LanguageProficiency Rating

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

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

[](#installation)

First, pull in the package through Composer.

```
composer require Makav3li94/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' => [
    Makav3li94\ReviewRateable\ReviewRateableServiceProvider::class
];
```

At last you need to publish and run the migration.

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

```

Run the migration

```
php artisan migrate

```

---

### Setup a Model

[](#setup-a-model)

```
