Пример #1
0
 public function getIndex()
 {
     $posts = TalkPost::whereParent_id(0)->orderBy('created_at', 'DESC')->paginate(15);
     $this->layout->content = View::make('talk::list.index', compact('posts'));
 }