select()->toArray(); foreach ($list as &$value) { $file_path = UploadFile::where('file_id', $value['image_id'])->field('file_id,file_path,file_type,storage,domain')->find(); $value['image'] = getUrl($file_path['file_path'], $file_path['domain']); } return $this->renderSuccess($list); } }