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