laravel-scope-moderation maintained by kharanenka
Description
Scope for field 'moderation' (bool)
Author
Last update
2016/11/14 18:04
(dev-master)
License
Downloads
40 510
Tags
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();