Esempio n. 1
0
 /**
  * Display a listing of the Post.
  *
  * @return Response
  */
 public function index()
 {
     $posts = Post::all();
     return $posts;
 }
Esempio n. 2
0
 /**
  * Show the main page.
  *
  * @return Response
  */
 public function index()
 {
     $posts = Post::all()->sortByDesc('created_at')->toArray();
     $data = ['posts' => $posts];
     return view('blog.index')->with($data);
 }