12/11
2016
Wallogit.com
2017 © Pedro Peláez
Scope for field 'code' (string)
You can use trait in your models with "code" field (string), (*1)
Require this package in your composer.json and update composer., (*2)
"kharanenka/laravel-scope-code": "1.0.*"
class MyModel extend Model { use Kharanenka\Scope\CodeField; ... } $obElement = MyModel::getByCode('Andrey')->first(); $obElement = MyModel::likeByCode('And')->first(); $obElement = MyModel::nullCode()->get(); $obElement = MyModel::notNullCode()->get();