PHPackages                             a2design/laravel-reviewable - 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. a2design/laravel-reviewable

Abandoned → [faustbrian/laravel-reviewable](/?search=faustbrian%2Flaravel-reviewable)ArchivedLibrary[Framework](/categories/framework)

a2design/laravel-reviewable
===========================

Reviewable Polymorphic Eloquent Models for Laravel 5

2.0.2(9y ago)018MITPHPPHP ^5.6 || ^7.0

Since Nov 4Pushed 9y ago2 watchersCompare

[ Source](https://github.com/a2design-inc/Laravel-Reviewable)[ Packagist](https://packagist.org/packages/a2design/laravel-reviewable)[ RSS](/packages/a2design-laravel-reviewable/feed)WikiDiscussions master Synced today

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

Laravel Reviewable
==================

[](#laravel-reviewable)

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

[](#installation)

Require this package, with [Composer](https://getcomposer.org/), in the root directory of your project.

```
$ composer require faustbrian/laravel-reviewable
```

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

```
'providers' => [
    BrianFaust\Reviewable\ReviewableServiceProvider::class
];
```

To get started, you'll need to publish the vendor assets and migrate:

```
php artisan vendor:publish --provider="BrianFaust\Reviewable\ReviewableServiceProvider" && php artisan migrate

```

Usage
-----

[](#usage)

### Setup a Model

[](#setup-a-model)

```
