Looking to hire Laravel developers? Try LaraJobs

laravel-scope-active maintained by kharanenka

Description
Scope for field 'active' (bool)
Last update
2016/11/12 20:33 (dev-master)
License
Links
Downloads
41 274

Comments
comments powered by Disqus

Trait ActiveField

You can use trait in your models with "active" field (bool)

#Installation Require this package in your composer.json and update composer.


"kharanenka/laravel-scope-active": "1.0.*"

Usage


    
    class MyModel extend Model {
    
        use Kharanenka\Scope\ActiveField;
    
        ...
    
    }
    
    $obElement = MyModel::active()->first();
    $obElement = MyModel::notActive()->first();