14/11
2016
Wallogit.com
2017 © Pedro Peláez
Scope for field 'moderation' (bool)
You can use trait in your models with "moderation" field (bool), (*1)
Require this package in your composer.json and update composer., (*2)
"kharanenka/laravel-scope-moderation": "1.0.*"
class MyModel extend Model { use Kharanenka\Scope\ModerationField; ... } $obElement = MyModel::moderation()->first(); $obElement = MyModel::notModeration()->first();