Looking to hire Laravel developers? Try LaraJobs

laravel-scope-hidden maintained by kharanenka

Description
Scope for field 'hidden' (bool)
Last update
2018/09/05 20:47 (dev-master)
License
Links
Downloads
39 284

Comments
comments powered by Disqus

Trait HiddenField

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

Installation

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


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

Usage


    
    class MyModel extend Model {
    
        use Kharanenka\Scope\HiddenField;
    
        ...
    
    }
    
    $obElement = MyModel::hidden()->first();
    $obElement = MyModel::notHidden()->first();