I have users table and calendars table joining with calandars_users table.
Users can join events of calendars, and calendars_users table has a date type column ‘subscribed’ of registered date.
But, I can not pacth entry nor new entry getted.
[⟩ Cake\Controller\Component\SecurityComponent->_validatePostCORE/src/Controller/Component/SecurityComponent.php, line 124]#)
says:
Missing field ‘calendars.1._joinData.subscribed’ in POST data
Request data on debug_kit is:
calendars (array)
->1 (array)
→ id 1
–>_joinData (array)
—>subscribed (array)
---->year 2018
---->month 08
---->day 01
How can I get date type format from date array in _joinData?
Thanks in advance.
p.s.
If not _joinData, date array is patched and saved automatically.