在laravel 5数据库中插入多个复选框

时间:2016-01-23 19:42:15

标签: laravel laravel-5 laravel-5.1 blade

我想将多个复选框从表单存储到数据库。

    &nbsp{!! Form::checkbox('expectations[]','New anerobic routines',true); !!} Find new anerobic routines <br>
 &nbsp{!! Form::checkbox('expectations[]','New aerobic routines',true); !!} Find new aerobic routines <br>
 &nbsp{!! Form::checkbox('expectations[]','Follow',true); !!} 

我以后不需要这些值来观看。基本上,它将在以后使用它们来显示基于此数据的用户数据。

您的建议是什么?

我已经在控制器中准备好了将数据插入数据库的存储方法。

感谢。

1 个答案:

答案 0 :(得分:0)

如果您只需要向用户查看数据但不通过json列查看类似{['key','value'],['key','value']}

的内容,那么保存值的最佳选择是json to column