How to automatically update repeatableEntry after form save
In v3, after saving a form, repeatableEntry would automatically update itself with the new data, this is not the case in v4, how do I do it.
Solution
$this->record->load('message'); // reloads the message relationship from the database$this->refresh(); // refreshes the Livewire component to show the updated data
$this->record->load('message'); // reloads the message relationship from the database$this->refresh(); // refreshes the Livewire component to show the updated data