How to bind an array of objects to checkboxes in Laravel Livewire:
The array looks like this:
[{"name":"A","selected":true}, {"name":"B","selected":true}]
My view blade:
<input type="checkbox" wire:model="list.{{$index}}.selected">
How to bind an array of objects to checkboxes in Laravel Livewire:
The array looks like this:
[{"name":"A","selected":true}, {"name":"B","selected":true}]
My view blade:
<input type="checkbox" wire:model="list.{{$index}}.selected">