unisharp/categorizable

categorize model

Package info

github.com/UniSharp/categorizable

Homepage

pkg:composer/unisharp/categorizable

Statistics

Installs: 14 716

Dependents: 0

Suggesters: 0

Stars: 3

Open Issues: 0

1.3.2 2019-11-21 09:03 UTC

Requires

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 6ebb0505b4608cad202b67904f613477ee5c5c2f

  • UniSharp <opensource.woop@unisharp.com>
  • Xing <xing1615.woop@gmail.com>

categoryUniSharp

This package is auto-updated.

Last update: 2026-06-06 23:36:02 UTC


README

👁 Latest Version on Packagist
👁 Software License
👁 Build Status
👁 Coverage Status
👁 Quality Score
👁 Total Downloads

It's a package to let you cagorize anything

Install

Via Composer

$ composer require unisharp/categorizable

Usage

use UniSharp\Category\Categorizable;

class Post extends Model {
 use Categorizable;
}

categorize

You can categorize by id, name or mixed array and id won't add duplicate category

$post->categorize(1); // by category id, it will do nothing if it can't find this category

$post->categorize("News"); // by category name and it will create new one if it can't find category

$post->categorize([1, "news"]); // You can use array

$post->categorize(1, "news"); // it's same as using array

uncategorize

It will remove category just like categorize

$post->uncategorize(1);

$post->uncategorize("News");

$post->uncategorize([1, "news"]);

$post->uncategorize(1, "news");

decategorize

remove all category

$post->decategorize();

recategorize

it will add category after clean all binding categories

same as $post->decategorize()->categorize(....)

$post->recategorize(1);

$post->recategorize("News");

$post->recategorize([1, "news"]);

$post->recategorize(1, "news");

hasCategories

You can find model which has specify categories it also search all children category

Post::hasCategories('News', 1)->get();

hasStrictCategories

It's same as hasCategories but just find category which you specify

Post::hasStrictCategories('News', 1)->get();

You can find model which has specify categories it also search all children category

Post::hasCategories('News', 1)->get();

Change log

Please see CHANGELOG for more information on what has changed recently.

Testing

$ composer test

Contributing

Please see CONTRIBUTING and CODE_OF_CONDUCT for details.

Security

If you discover any security related issues, please email xing1615@gmail.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.