pablopetr
Auto save for forms
Thank you very much @Rhys Lees, @PovilasKorop and @toeknee . I applied this solution. In my case I added
->debounce(10000)
to the text input at my resource and the updated function in the Pages/Edit{Resource}.php:
public function updated(): void
{
$this->save();
}
This feature is to cases when I start thinking and let the keyboard alone. In this case the database updates will not be a problem. Also, to see the notifications is good to me.
8 replies