rtconner / laravel-tagging

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

tags do not insert in database table (tagging_tags - tagging_tagged) #187

Closed amin98362 closed 4 years ago

amin98362 commented 4 years ago

Hi Thank you for useful package I installed version 4 , and i have 3 tables in database (tagging_tags - tagging_tagged - tagging_tag_groups) after php artisan migrate, in Article model added trait use \Conner\Tagging\Taggable; protected $fillable = [ 'taggs', ]; and in "articles" table in database I have 'taggs' column, when i add article with tag in 'taggs' column, tag does not insert in tagging_tags - tagging_tagged tables. Did I forget a setting?