id] = $item->title; } return $options; } /* * 设置状态为已导入 */ public static function setStatusToImported($id) { $row = Model::where('id', $id)->first(); if ($row) { $row->updated_at = Carbon::now(); $row->imported = 1; $row->save(); } return true; } }