Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

Wstrwyatt's avatar

Multiple Checkbox responses

I am needing some assistance, I am attempting to take a form and save the values of the checked checkboxes. When I return $request from the store function in the controller, it's only displays one option. I even tried adding an implode function that I got from stackoverflow. Any Ideas?

$request->merge([ 'practiceAreas' => implode(',', (array) $request->get('practiceAreas')) ]);

0 likes
2 replies
purposemedia's avatar
Level 8

If theres only one option after selecting multiple then your html is incorrect (missing '[]').

<input type="checkbox" name="thing[]" value="1" />
<input type="checkbox" name="thing[]" value="2" />
<input type="checkbox" name="thing[]" value="3" />
1 like

Please or to participate in this conversation.