LoginSignup
18
22

More than 5 years have passed since last update.

Laravelのcheckbox小技

Posted at

bladeのFormの中で同じnameのcheckboxを使っていて、複数チェックした後にsubmitされたデータを見てみると1つしかデータが入ってない!
って時にやったメモ。

NGパターン

test.blade.php

{{Form::checkbox('test', 1, true)}}
{{Form::checkbox('test', 2, true)}}

TestController.php

Log::debug(Input::all());
// ↑2つチェックしたのに中身がtest: "2"になってる!

OKパターン

test.blade.php

{{Form::checkbox('test[]', 1, true)}}
{{Form::checkbox('test[]', 2, true)}}

TestController.php

Log::debug(Input::all());
// ↑中身がtest: [1, 2]になってる!

というわけでcheckboxを使う際の小技でした。

18
22
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
18
22