Exemplo n.º 1
0
 /**
  * Display a listing of the Post.
  *
  * @return Response
  */
 public function index()
 {
     $posts = $this->postRepository->paginate(100);
     return view('posts.index')->with('posts', $posts);
 }