Skip to content
Advertisement

How to get all the selected values from a multiselect input?

I am using Laravel and I tried to used die(var_dump('$request->input('users'))); to check the data that are selected using a multiselect input. When I selected all 3 users, the output was just showing the last user id like this

JavaScript

This is the input. The name was set as user[0] because the inputs can be multiple depending on the user how many multiselect input is needed

JavaScript

And this below if from the controller

JavaScript

Advertisement

Answer

You should have the input name setup as the syntax for adding an element to an array:

JavaScript

Then you will get your array from $request->input('user', []);

If you are going to have multiple different selects you can use the index in them if you wish:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement