Created
June 3, 2014 09:25
-
-
Save syossan27/53cc6c2f44f3a43032e9 to your computer and use it in GitHub Desktop.
Laravelのcheckbox小技 ref: http://qiita.com/syo/items/ff4dc5e75e279df5ac54
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{Form::checkbox('test', 1, true)}} | |
{{Form::checkbox('test', 2, true)}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Log::debug(Input::all()); | |
// ↑2つチェックしたのに中身がtest: "2"になってる! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{Form::checkbox('test[]', 1, true)}} | |
{{Form::checkbox('test[]', 2, true)}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Log::debug(Input::all()); | |
// ↑中身がtest: [1, 2]になってる! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment