How to make a list of action in custom modal unique?
When I try to delete an item from the list, all the delete buttons are being triggered instead of just the one I clicked. I know I need to add a unique ID to each button's action to fix this, but I'm not sure how to implement it. Could anyone guide me? Thank you.

Solution:Jump to solution
I don't think they are all being triggered at all, I think the loader is being triggered and the loader is just checking what's clickable. You can try wire keying each action to try to isolate it.
5 Replies

as you can see from the gif, the loading on other item is also triggered.
Solution
I don't think they are all being triggered at all, I think the loader is being triggered and the loader is just checking what's clickable. You can try wire keying each action to try to isolate it.
yeah you right. I went and create a livewire component instead. now it is working. thank you