<select name="car_id[]">
//for each of cars
</select>
我需要将多个id存储到一列,是否可以使用它?
table_car = car_id | car_desc
table_owner = id | name | car_id
现在表所有者应该存储很多car_id。 laravel 5怎么可能?我是新来的,谢谢你。
答案 0 :(得分:0)
是的,你可以这样做,为此你可以使用 impload()或序列化() PHP 的功能。 他们做了什么?,使用这些方法你可以用字符串转换数组,你可以将它保存在单列中。
为此,
'car_id' column should be VARCHAR type..
祝你好运。