relationship datetime property not hydrated when in relationship group
Hey i just encountered something weird and i am wondering if anyone else encountered this (before submitting a issue on github)
(using postgres btw)
Imagine you have a:
(using postgres btw)
Imagine you have a:
- model:
Userwith a one to one relationUserInformation->information - add a datetime column
notify_attoUserInformationand cast it as such. - add
Group::make([DateTimePicker('notify_at')])->relationship('information')
- remove the datetime cast.
- add the
->native(false)to the picker.