Example #1
0
 public function getIndex()
 {
     return View::make('blog.pages.index')->with('posts', Post::enabled()->simplePaginate(5))->with('lastposts', Post::enabled()->take(4)->get())->with('lastcomments', Comment::where('enabled', '=', '1')->take(4)->orderBy('created_at', 'DESC')->get())->with('categories', Category::all());
 }