kharanenka/laravel-scope-code

Scope for field 'code' (string)

1.0.0 2016-11-12 19:26 UTC

This package is auto-updated.

Last update: 2024-03-29 02:56:19 UTC


README

You can use trait in your models with "code" field (string)

#Installation Require this package in your composer.json and update composer.

"kharanenka/laravel-scope-code": "1.0.*"

Usage

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