Select Multiple or Checkboxes
How to set the values from existing data
Last updated
How to set the values from existing data
Last updated
I see many questions on Laracasts where the person seems confused about how to set the value of the select input or checkboxes when using Laravel Livewire.
The simple answer is that you don't need to worry if you set your component up right then Laravel will take care of it for you.
The component illustrates the use of both select (with "multiple" enabled), and checkboxes.
The code for the component looks like
The important points are;
Line 13, the user's existing roles are pulled from the user model roles relationship, and stored in the component as an array
Line 26, all possible roles are passed to the view. Here, the cache is used to keep a record of the possible options in the cache for 60 seconds. So if the component is changed multiple times, then the roles are not re-queried from the database each time.
Line 34, since we are holding the choices as an array, we can use Laravel's array validation to ensure that each member of the array matches the rules, and in this case, the role must exist in the roles table.
Line 43, once the roles have been chosen, since they are an array of IDs, they can be simply passed into the sync() function against the roles relationship. No matter what the roles before the save, syncing the roles with the array will set the new roles only.
The view contains both input types for the benefit of this article only. I suggest that you use checkboxes over the multi-select because of the tricky UI to select multiple, and not accidentally clearing existing roles.
For the Multiple Select, we need to wire:model
the select to the roles array then iterate over the possible roles for each option. We do NOT need to use the selected
html parameter on each option as this will be applied automatically by Livewire' wire:model.
Neither do we need to worry about the old()
helper, again Livewire will take care of this for us.
For each of the possible roles, we output a label and checkbox. Each individual checkbox is bound to the array of the user roles. Livewire takes care of changing the correct array member according to the value
of the checkbox.
Again, we don't need to care about the old()
helper or the checked
state
With Livewire2, you should be wary of a user manipulating the public properties of your component, such as changing the user_id to that of another user. Check the video;
You can discuss pages on this site at https://github.com/snapey/talltips/discussions