Ejemplo n.º 1
0
 /**
  * Display a listing of the Author.
  *
  * @return Response
  */
 public function index()
 {
     $authors = $this->authorRepository->paginate(10);
     return view('authors.index')->with('authors', $authors);
 }