how to get event dates on change in datetimepicker with laravel livewire

Solutions on MaxInterview for how to get event dates on change in datetimepicker with laravel livewire by the best coders in the world

showing results for - "how to get event dates on change in datetimepicker with laravel livewire"
Julien
10 Jan 2017
1 <input wire.model="birthday_date"  id="birthday_date" class="form-controll date" >
2   <script>
3            document.addEventListener('livewire:load', function () {
4                
5                    $('#birthday_date').on('dp.change', function (e) {
6                
7                        @this.set('birthday_date', e.target.value);
8                    });
9            });  
10      </script> 
11