kharanenka / laravel-scope-type
Scope for field 'type' (string)
Installs: 36 541
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/kharanenka/laravel-scope-type
Requires
- php: >=7.0
This package is auto-updated.
Last update: 2025-10-29 02:29:40 UTC
README
You can use trait in your models with "type" field (string)
Installation
Require this package in your composer.json and update composer.
"kharanenka/laravel-scope-type": "1.0.*"
Usage
class MyModel extend Model {
use \Kharanenka\Scope\TypeField;
...
}
$obElement = MyModel::getByType('Andrey')->first();
$obElement = MyModel::likeByType('And')->first();
$obElement = MyModel::nullType()->get();
$obElement = MyModel::notNullType()->get();