Skip to content

Latest commit

 

History

History
28 lines (15 loc) · 449 Bytes

File metadata and controls

28 lines (15 loc) · 449 Bytes

Trait CategoryBelongsTo

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