This package offers taggable behaviour for your models. After the package is installed the only thing you have to do is to add the HasTags trait to an Eloquent model to make it taggable.
But we didn't stop with the regular tagging capabilities you find in every package. Laravel Tags comes with batteries included. Out of the box it has support for translating tags, multiple tag types and sorting capabilities.
Here are some code examples:
// create a model with some tags$newsItem = NewsItem::create([
'name' => 'testModel',
'tags' => ['tag', 'tag2'], //tags will be created if they don't exist
]);
// attaching tags$newsItem->attachTag('tag3');
$newsItem->attachTags(['tag4', 'tag5']);
// detaching tags$newsItem->detachTag('tag3');
$newsItem->detachTags(['tag4', 'tag5']);
// syncing tags$newsItem->syncTags(['tag1', 'tag2']); // all other tags on this model will be detached// retrieving models that have any of the given tagsNewsItem::withAnyTags(['tag1', 'tag2']);
// retrieve models that have all of the given tagsNewsItem::withAllTags(['tag1', 'tag2']);
// translating a tag$tag = Tag::findOrCreate('my tag');
$tag->setTranslation('fr', 'mon tag');
$tag->setTranslation('nl', 'mijn tag');
$tag->save();
// using tag types$tag = Tag::findOrCreate('tag 1', 'my type');
// tags have slugs$tag = Tag::findOrCreate('yet another tag');
$tag->slug; //returns "yet-another-tag"// tags are sortable$tag = Tag::findOrCreate('my tag');
$tag->order_column; //returns 1$tag2 = Tag::findOrCreate('another tag');
$tag2->order_column; //returns 2//manipulating the order of tags$tag->swapOrder($anotherTag);
// get all tags containing a given valueTag::containing('test'); // returns all tags that contain 'test'