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