PHPackages                             secrethash/r8 - 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. [Framework](/categories/framework)
4. /
5. secrethash/r8

AbandonedArchivedPackage[Framework](/categories/framework)

secrethash/r8
=============

Review &amp; Rating system for Laravel

v1.0.0(5y ago)251683[2 issues](https://github.com/secrethash/r8/issues)MITPHPPHP ^7.2CI failing

Since May 30Pushed 5y ago2 watchersCompare

[ Source](https://github.com/secrethash/r8)[ Packagist](https://packagist.org/packages/secrethash/r8)[ Docs](https://github.com/secrethash/r8)[ RSS](/packages/secrethash-r8/feed)WikiDiscussions master Synced 1w ago

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

R8: Reviews, Ratings and Recommendations
========================================

[](#r8-reviews-ratings-and-recommendations)

[![Latest Stable Version](https://camo.githubusercontent.com/6882ecb0ce37c1224ebb38fae50d38bba56331f0cf3cc9b66761b5c70e5b3862/68747470733a2f2f706f7365722e707567782e6f72672f736563726574686173682f72382f76)](//packagist.org/packages/secrethash/r8) [![Total Downloads](https://camo.githubusercontent.com/f83e01bd8c12aabca6e3d351ab8b80147958177d81a9d72fc7a932ec467d6488/68747470733a2f2f706f7365722e707567782e6f72672f736563726574686173682f72382f646f776e6c6f616473)](//packagist.org/packages/secrethash/r8) [![Dependents](https://camo.githubusercontent.com/5c249741054fc14346f7039310f11ac0d8171c716d33cd59ef8144eafc41009b/68747470733a2f2f706f7365722e707567782e6f72672f736563726574686173682f72382f646570656e64656e7473)](//packagist.org/packages/secrethash/r8) [![Latest Unstable Version](https://camo.githubusercontent.com/a13d402d8ec695cbc8eb33f9ea9be60b587fd7def0fac4c51b182f1a483f81ab/68747470733a2f2f706f7365722e707567782e6f72672f736563726574686173682f72382f762f756e737461626c65)](//packagist.org/packages/secrethash/r8) [![License](https://camo.githubusercontent.com/bd3dac81150bbdca255121c6b06255942515ba5757d3566adf997b497bfe4308/68747470733a2f2f706f7365722e707567782e6f72672f736563726574686173682f72382f6c6963656e7365)](./LICENSE)

Laravel has always been missing a package like this, that supports dynamic rating with multiple Rating Types (ex. Like in Amazon or any e-commerce platform, Quality Rating, Customer Service Experience Ratings, etc.) with Integrated Reviews and Recommend Functionality.

The main Ideology behind this package is to make it easily adaptable for everyone's use case.

Reviews &amp; Ratings system for Laravel 7. You can rate any of your models.

- Custom Rating Types (ex: Product Quality, Delivery Speed, Pricing, etc.) without any limitations.
- Display Overall and Average Ratings
- Method Chaining
- You can set whether the model being rated is recommended.

Installation
============

[](#installation)

First, pull in the package through Composer.

```
composer require secrethash/r8

```

**NOTE: The `dev-master` is *UNDER HEAVY DEVELOPMENT***

You will need to publish and run the migrations.

```
php artisan vendor:publish --provider="Secrethash\R8\R8ServiceProvider" --tag="migrations"

```

Run the migrations

```
php artisan migrate

```

---

Setup
-----

[](#setup)

Setup the model that will be reviewed, rated &amp; recommended.

```
