PHPackages                             sukohi/evaluation - 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. sukohi/evaluation

ActiveLibrary

sukohi/evaluation
=================

A Laravel package to manage evaluation data like LIKE, DISLIKE, FAVORITE and REMEMBER.

4.0.5(8y ago)121.0k3MITPHP

Since Aug 3Pushed 8y ago1 watchersCompare

[ Source](https://github.com/SUKOHI/Evaluation)[ Packagist](https://packagist.org/packages/sukohi/evaluation)[ RSS](/packages/sukohi-evaluation/feed)WikiDiscussions master Synced 1mo ago

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

Evaluation
==========

[](#evaluation)

A Laravel package to manage evaluation data like LIKE, DISLIKE, FAVORITE and REMEMBER. (This package is maintained under L5.5.)

- Note: This package is inspired by [rtconner/laravel-likeable](https://github.com/rtconner/laravel-likeable). Thank you, rtconner!

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

[](#installation)

Execute the following composer command.

```
composer require sukohi/evaluation:4.*

```

Register the service provider in app.php.
If you are in L5.5+ you don't need the above.

```
'providers' => [
    //...Others...,
    Sukohi\Evaluation\EvaluationServiceProvider::class,
]

```

Preparation
===========

[](#preparation)

To make a table for this package, execute the following commands.

```
php artisan vendor:publish --provider="Sukohi\Evaluation\EvaluationServiceProvider"

```

and

```
php artisan migrate

```

Usage
=====

[](#usage)

Add `EvaluationTrait` to your model like so.

```
