How to get the values for a series of checkboxes in Laravel 4 controller (if checked)

后端 未结 3 989
既然无缘
既然无缘 2020-12-31 11:56

I would like to get the values for a series of checkboxes I have set up in a Laravel 4 form. Here is the code in the view setting up the checkboxes:

@foreac         


        
3条回答
  •  臣服心动
    2020-12-31 12:25

    The array friend must have a key . If there is $friend->id you could try something like this.

     @foreach ($friends as $friend)
      
     @endforeach
    

提交回复
热议问题