public function chapterById($id)
 {
     $chapter = Chapter::where('id', $id)->first();
     return $chapter;
 }