Populating Repeater Select Dropdown
How can you populate a select dropdown inside a repeater based on the select dropdown outside the repeater. See attached screenshot. Thank you!
Solution:Jump to solution
Passing an array into the repeater..
```php
->live()
->afterStateUpdated(function($state, \Closure $get) {
$set('myRepeater', SubjectsModel::find((int) $state)->toArray());...
2 Replies