body = clean($topic->body, 'user_topic_body'); $topic->excerpt = make_excerpt($topic->body); // 如 slug 字段无内容,即使用翻译器对 title 进行翻译 if (!$topic->slug) { $topic->slug = app(SlugTranslateHandler::class)->translate($topic->title); } } public function updating(Topic $topic) { // } }