sapalymahabat/vendor/kharanenka/laravel-scope-moderation
Kerim 1bd6c22649 Add all my files 2022-09-28 21:57:31 +05:00
..
src/Kharanenka/Scope Add all my files 2022-09-28 21:57:31 +05:00
.gitignore Add all my files 2022-09-28 21:57:31 +05:00
LICENSE Add all my files 2022-09-28 21:57:31 +05:00
README.md Add all my files 2022-09-28 21:57:31 +05:00
composer.json Add all my files 2022-09-28 21:57:31 +05:00

README.md

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