12/11
2016
Wallogit.com
2017 © Pedro Peláez
Scope for field 'name' (string)
You can use trait in your models with "name" field (string), (*1)
Require this package in your composer.json and update composer., (*2)
"kharanenka/laravel-scope-active": "1.0.*"
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();