Every single cell action buttons is a child component. The child component is a custom component.
and i have single modal blade on parent component.
example: when i click edit button (on child component), i send show modal event to the parent with binding model property, then when i update the model (update method is on parent component), I refresh the parent component to update.
with this setup, it refreshes all child components.
Is there anyway to refresh data only to the certain child component from parent component ?
If this is not a good practice ? can someone give some insight how is the good practice for nested component?