Exemplo n.º 1
0
 public function chapter()
 {
     $chapters = Chapter::orderBy('index', 'desc')->with('novel')->paginate(10);
     return view('chapter', ['chapters' => $chapters, 'pageName' => 'chapter']);
 }