@@ -256,8 +256,6 @@ class PostRepositories
DB::beginTransaction();
try{
$comment = $this->postComment->create($data);
- $post->data->comment_count += 1;
- $post->data->save();
DB::commit();
return jsonSuccess(['id' => $comment->id], '评论成功');