get('verify_comment')==1){ $comment->status = 0; } }); /*监听删除事件*/ static::deleting(function($comment){ /*问题、回答、文章评论数 -1*/ $comment->source()->where("comments",">",0)->decrement('comments'); }); } public function source() { return $this->morphTo(); } public function toUser(){ return $this->belongsTo('App\Models\User','to_user_id'); } }