public function commentPost(Request $request, $post_id)
 {
     $comment = $request->input("comment");
     $user_id = Auth::user()->user_id;
     $result = CommentEvent::createCommentEvent($post_id, $user_id, $comment);
     if ($result) {
         return response()->json(["result" => "successfully"]);
     }
 }