kharanenka/laravel-scope-category-belongs-to

Scope for field 'category_id' (int)

1.0.0 2016-11-12 19:29 UTC

This package is auto-updated.

Last update: 2024-03-29 03:07:30 UTC


README

You can use trait in your models with "category_id" field (int)

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

"kharanenka/laravel-scope-category-belongs-to": "1.0.*"

Usage

    
    class MyModel extend Model {
    
        use Kharanenka\Scope\CategoryBelongsTo;
    
        ...
    
    }
    
    $obElement = MyModel::getByCategory(10)->first();