Exemplo n.º 1
0
 /**
  * Show the application dashboard.
  *
  * @return Response
  */
 public function index()
 {
     $posts = Guestbook::with('user')->orderBy('id', 'desc')->paginate(10);
     return view('guestbook.index', compact('posts'));
 }