PHPackages                             turiguia/reviewrateable - 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. turiguia/reviewrateable

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

turiguia/reviewrateable
=======================

Rating syetem for Laravel 5

1.0.6(8y ago)044MITPHPPHP &gt;=5.5.9

Since Nov 11Pushed 8y ago1 watchersCompare

[ Source](https://github.com/douglasroos/laravel-reviewRateable)[ Packagist](https://packagist.org/packages/turiguia/reviewrateable)[ RSS](/packages/turiguia-reviewrateable/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (1)Versions (5)Used By (0)

[![Latest Stable Version](https://camo.githubusercontent.com/7a2fd92a7e07bc88129eeed89398822ee4b60c05956b7c11d7ce30b9026609e6/68747470733a2f2f706f7365722e707567782e6f72672f74757269677569612f7265766965777261746561626c652f762f737461626c65)](https://packagist.org/packages/turiguia/reviewrateable)[![Total Downloads](https://camo.githubusercontent.com/74feeb66a9ae482dd017556e0b01354a5c81c7ec8c86ff0bdc24cf350da3b428/68747470733a2f2f706f7365722e707567782e6f72672f74757269677569612f7265766965777261746561626c652f646f776e6c6f616473)](https://packagist.org/packages/turiguia/reviewrateable)[![Latest Unstable Version](https://camo.githubusercontent.com/ddf3aa284e45d49e5b0a892ab96de03f3bebc83719d2cb90213e1d3180284632/68747470733a2f2f706f7365722e707567782e6f72672f74757269677569612f7265766965777261746561626c652f762f756e737461626c65)](https://packagist.org/packages/turiguia/reviewrateable) [![License](https://camo.githubusercontent.com/14f538f2748f473977ee15f01918775497ed3870b44cab39fd45b8480a0b10a5/68747470733a2f2f706f7365722e707567782e6f72672f74757269677569612f7265766965777261746561626c652f6c6963656e7365)](https://packagist.org/packages/turiguia/reviewrateable)

Laravel ReviewRateable
======================

[](#laravel-reviewrateable)

ReviewRateable system for laravel 5

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

[](#installation)

First, pull in the package through Composer.

```
composer require turiguia/reviewrateable
```

And then include the service provider within `app/config/app.php`.

```
'providers' => [
    Turiguia\ReviewRateable\ReviewRateableServiceProvider::class
];
```

At last you need to publish and run the migration.

```
php artisan vendor:publish --provider="Turiguia\ReviewRateable\ReviewRateableServiceProvider" && php artisan migrate

```

---

### Setup a Model

[](#setup-a-model)

```
