Automatic count repeater item
Hello, I tried to count how many items the user input in the repeater so that at the end of the form can show how many they already listed
but nothing shows up with this error
this is my repeater name
Thank you for your help!
Solution:Jump to solution
i use this alternative
https://laraveldaily.com/post/filament-repeater-live-calculations-on-update
```php
$count = collect($get('participant'))->filter(fn($item) => !empty($item['nameParticipant']));...
1 Reply
Solution