|
|
||
|---|---|---|
| .. | ||
| src/Kharanenka/Scope | ||
| .gitignore | ||
| LICENSE | ||
| README.md | ||
| composer.json | ||
README.md
Trait NameField
You can use trait in your models with "name" field (string)
#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\NameField;
...
}
$obElement = MyModel::getByName('Andrey')->first();
$obElement = MyModel::likeByName('And')->first();
$obElement = MyModel::nullName()->get();
$obElement = MyModel::notNullName()->get();