Esempio n. 1
0
 public function missingMethod($parameters = array())
 {
     $post = TalkPost::whereSlug($parameters[0])->first();
     if (null != $post) {
         $comments = TalkPost::where('parent_id', '=', $post->id)->get();
         $this->layout->content = View::make('talk::read.post', compact('post', 'comments'));
     }
 }