public function countChapterComment(Chapter $chapter = null)
 {
     if ($chapter) {
         return $chapter->comments()->count();
     }
     $total = 0;
     foreach ($this->model->chapters as $chapter) {
         $total += $chapter->comments()->count();
     }
     return $total;
 }