cviebrock / eloquent-taggable

Easily add the ability to tag your Eloquent models in Laravel.
MIT License
537 stars 72 forks source link

How to delete a tag with all associations? #91

Closed kaju74 closed 3 years ago

kaju74 commented 5 years ago

Hi,

I'm trying to delete a tag with all possible associations, but how?

Thank you, Marc

cviebrock commented 5 years ago

Does this not work?

Tag::findByName('foo')->delete();
cviebrock commented 3 years ago

Closing due to no response. Feel free to re-open or comment if you are still having issues.