rtconner / laravel-tagging

Tag support for Laravel Eloquent models - Taggable Trait
MIT License
882 stars 168 forks source link

adding new tag #58

Closed ghost closed 9 years ago

ghost commented 9 years ago

can we do some thing like this.

  1. add tag . 2.attach tag to articles ?

Doc explain how to attach tag , but how can i add tag first . :)

rtconner commented 9 years ago

Tags get automatically added to the database, you don't need to do anything.

$article->tag('any string here'); will work