select()->each(function ($item){ $content = json_decode($item['fields'], true); if (isset($content['behavioral_info']['free_time'])){ $content['family_info']['free_time'] = $content['behavioral_info']['free_time']; } if (isset($content['other_info']['car_price'])) { $content['family_info']['car_price'] = $content['other_info']['car_price']; } if (isset($content['other_info']['hourse_price'])) { $content['family_info']['hourse_price'] = $content['other_info']['hourse_price']; } if (isset($content['other_info']['buying_community'])) { $content['family_info']['buying_community'] = $content['other_info']['buying_community']; } if (isset($content['other_info']['peripheral_supporting'])) { $content['family_info']['peripheral_supporting'] = $content['other_info']['peripheral_supporting']; } unset($content['behavioral_info']['free_time']); unset($content['other_info']['car_price']); unset($content['other_info']['hourse_price']); unset($content['other_info']['buying_community']); unset($content['other_info']['peripheral_supporting']); $item->fields = json_encode($content); $item->save(); }); } }