Skip to content
Advertisement

How to attach when enter a text in laravel?

After login a user, The user enters this skills form, selects the skills.

skills

A user can enter multiple skills, and save in database.

The field of name

  • skill_name
  • level

And in table

  • skill_name
  • level
  • user_id

I don’t know if the skills and skill_user table should be, or not, I don’t know.

What would you do if you were me?

Can you show me the cleanest coding?

JavaScript

blade

JavaScript

Controller

JavaScript

User.php

JavaScript

I get this error.

error

Advertisement

Answer

It seems that there isn’t a level column in the skill_user table.

I think the skill table should just store the id and skill name. Then you add the level column in the skill_user and use skill_id and level to track the user level.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement