From ad3559ded5b82f12ae10cdf33373d2c4317b3984 Mon Sep 17 00:00:00 2001 From: Dieter Coopman Date: Thu, 14 Oct 2021 08:42:29 +0200 Subject: [PATCH] adding Laravel Livewire onchange event --- pikaday.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pikaday.md b/pikaday.md index 60ce97a..62b79d6 100644 --- a/pikaday.md +++ b/pikaday.md @@ -114,3 +114,13 @@ return [ ], ]; ``` + +## Catching the onchange event in Laravel Livewire + +Laravel Livewire is not capable of catching the onchange event on the pikaday component by default. If you want to catch +the onchange event you can do this with `lazy` data binding. + +```php + +``` +