コード例 #1
0
 public function index()
 {
     $blogPosts = Blog::orderBy('BlogId', 'desc')->get();
     return View::make('blogs.index')->with('blogPosts', $blogPosts);
 }