Create a feild similar to category in post module .
Created 6 years ago by hemanthpyro

I need to add a "qualification" field to my post .This field should be a tag field and should take data from a table(qualification) similar to "category" .Also I need to add "qualification" from admin panel similar to addition of category .

webformatik  —  6 years ago Best Answer

You want to assign multiple qualifications? Then use: ´ 'qualification' => [ 'type' => 'anomaly.field_type.multiple', 'config' => [ 'related' => QualificationModel::class, ], ], ´

piterden  —  6 years ago

At the first add field, then assign it to the model (stream) you need.

hemanthpyro  —  6 years ago

Didn't get you.Can You explain a bit

webformatik  —  6 years ago Best Answer

You want to assign multiple qualifications? Then use: ´ 'qualification' => [ 'type' => 'anomaly.field_type.multiple', 'config' => [ 'related' => QualificationModel::class, ], ], ´

hemanthpyro  —  6 years ago

Thanks I got it .