october_1x0/vendor/kharanenka/laravel-scope-name
Kerim f037dd7b2d first commit 2022-06-24 19:32:37 +05:00
..
src/Kharanenka/Scope first commit 2022-06-24 19:32:37 +05:00
.gitignore first commit 2022-06-24 19:32:37 +05:00
LICENSE first commit 2022-06-24 19:32:37 +05:00
README.md first commit 2022-06-24 19:32:37 +05:00
composer.json first commit 2022-06-24 19:32:37 +05:00

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();