Installation

alicia banner

codecov GitHub Workflow Status GitHub top language GitHub release (latest by date) StyleCi

Installation

Install the package via composer

composer require hans-thomas/alicia

Then, publish config file using

php artisan vendor:publish --tag alicia-config

In the end, use AliciaHandler trait on your model.

use Hans\Alicia\Traits\AliciaHandler;
use Illuminate\Database\Eloquent\Model;

class Post extends Model {
    use AliciaHandler;

    // ...
}

Done.