kharanenka/laravel-scope-moderation

Scope for field 'moderation' (bool)

1.0.1 2016-11-14 17:04 UTC

This package is auto-updated.

Last update: 2024-03-29 03:13:27 UTC


README

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();