brychtaj/taggy

There is no license information available for the latest version (1.0.0) of this package.

An eloquent package for laravel

Installs: 9

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/brychtaj/taggy

1.0.0 2017-02-23 19:50 UTC

This package is not auto-updated.

Last update: 2025-10-02 01:09:08 UTC


README

Tag laravel Models using polymorphic relations.

Public API:

$model = Model::create([]);

$tags = Tag::create(["enter", "some", "tags"]);

$model->tag(["some", "tags"]);

$model->untag(["tags"]);

$model->retag(["some", "tags"]);

$model->removeAllTags();