kharanenka/laravel-scope-hidden

Scope for field 'hidden' (bool)

1.0.0 2018-09-05 18:47 UTC

This package is auto-updated.

Last update: 2024-04-29 03:44:55 UTC


README

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