kharanenka/laravel-scope-type

Scope for field 'type' (string)

1.0.0 2018-09-05 19:06 UTC

This package is auto-updated.

Last update: 2024-04-29 04:20:49 UTC


README

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

Installation

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

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

Usage

    
    class MyModel extend Model {
    
        use \Kharanenka\Scope\TypeField;
    
        ...
    
    }
    
    $obElement = MyModel::getByType('Andrey')->first();
    $obElement = MyModel::likeByType('And')->first();
    $obElement = MyModel::nullType()->get();
    $obElement = MyModel::notNullType()->get();