kharanenka/laravel-scope-moderation
Scope for field 'moderation' (bool)
40,356
1
| Install | |
|---|---|
composer require kharanenka/laravel-scope-moderation |
|
| Latest Version: | 1.0.1 |
| PHP: | >=5.6 |
| License: | GPL-3.0 |
| Last Updated: | Nov 14, 2016 |
| Links: | GitHub · Packagist |
Maintainer: Andrey Kharanenka
Trait ModerationField
You can use trait in your models with "moderation" field (bool)
#Installation
Require this package in your composer.json and update composer.
"kharanenka/laravel-scope-moderation": "1.0.*"
Usage
class MyModel extend Model {
use Kharanenka\Scope\ModerationField;
...
}
$obElement = MyModel::moderation()->first();
$obElement = MyModel::notModeration()->first();