How to dynamically build this query - Laravel/Lumen
问题 I have the following input from the user: array ( 'id_coretable' => 1, 'Internal_key' => 'UPDATED1', 'extensiontable_itc' => array ( 'description_itc' => 'UPDATED1', ), 'extensiontable_sysops' => array ( 'description_sysops' => 'UPDATED1', ), ) and its contents shall update the following model: array ( 'id_coretable' => 1, 'Internal_key' => 'TESTKEY_1', 'extensiontable_itc' => array ( 'description_itc' => 'EXTENSION_ITC_1', ), 'extensiontable_sysops' => array ( 'description_sysops' =>