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

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

shamarkellman/reviewrateable
============================

Rating system for Laravel 5

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

Since Nov 11Pushed 6y ago1 watchersCompare

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

READMEChangelog (1)Dependencies (1)Versions (5)Used By (0)

[![Latest Stable Version](https://camo.githubusercontent.com/d682e8a03262159bf0f4f18bff857d2685f33c8a832899e0763bf1558c56c802/68747470733a2f2f706f7365722e707567782e6f72672f7368616d61726b656c6c6d616e2f7265766965777261746561626c652f762f737461626c65)](https://packagist.org/packages/shamarkellman/reviewrateable)[![Total Downloads](https://camo.githubusercontent.com/62dac7ef34d8e7eaa5881eb2a26e855a245ac7ff1b928a736eb5aea572b13165/68747470733a2f2f706f7365722e707567782e6f72672f7368616d61726b656c6c6d616e2f7265766965777261746561626c652f646f776e6c6f616473)](https://packagist.org/packages/shamarkellman/reviewrateable)[![Latest Unstable Version](https://camo.githubusercontent.com/b30a64b4b0b8790982a8b0866c4c8f9360f90de209f85f36ce21457177bf299b/68747470733a2f2f706f7365722e707567782e6f72672f7368616d61726b656c6c6d616e2f7265766965777261746561626c652f762f756e737461626c65)](https://packagist.org/packages/shamarkellman/reviewrateable) [![License](https://camo.githubusercontent.com/4ea3301e3672cb912e349ee69e119ece5fc0842d3fafd6b0a649644e3eadf172/68747470733a2f2f706f7365722e707567782e6f72672f7368616d61726b656c6c6d616e2f7265766965777261746561626c652f6c6963656e7365)](https://packagist.org/packages/shamarkellman/reviewrateable)

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

[](#laravel-reviewrateable)

ReviewRateable system for laravel 5

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

[](#installation)

First, pull in the package through Composer.

```
composer require shamarkellman/reviewrateable
```

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

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

At last you need to publish and run the migration.

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

---

### Setup a Model

[](#setup-a-model)

```
