kharanenka / laravel-scope-active
Scope for field 'active' (bool)
Package info
github.com/kharanenka/laravel-scope-active
pkg:composer/kharanenka/laravel-scope-active
1.0.3
2016-11-12 19:33 UTC
Requires
- php: >=5.6
This package is not auto-updated.
Last update: 2026-03-07 05:17:49 UTC
README
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();