예제 #1
0
 /**
  * Show the application dashboard to the user.
  *
  * @return Response
  */
 public function index()
 {
     $stories = Story::latest('updated_at')->get();
     return view('home', compact('stories'));
 }