getById() public method

Get comment by given id.
public getById ( $id ) : mixed
$id
return mixed
 public function getUpdate($id)
 {
     $comment = $this->commentRepository->getById($id);
     return view('weyi.comment.update', compact('comment'));
 }