Teodor
September 25, 2025, 2:03pm
16
What type of column are you trying to insert the data into?
Please make sure it's the correct data type as explained in the first couple of screenshots here:
Intro
You can insert the value of the Tagify component into a database. In our example we will show you how to store it in a json field.
Database Setup
We have a products table and each product can be assigned to different categories. We’d like to use the Tagify component to pick the categories per each product, when inserting it in the database.
Our products database table is quite simple, an id field, name, description and category:
[Screenshot_19]
Our Category field type is json, and i…