Exemplo n.º 1
0
 public function show($id, $slug)
 {
     // Show a thread
     // Get the OP
     $post = Post::find($id);
     // Get the replies
     $replies = Post::where('thread_id', $id)->paginate(15);
     // Add a view to this thread
     $view = new ThreadView();
     $view->user_id = Auth::user()->id;
     $view->post_id = $id;
     $view->save();
     return view('forums.thread')->withThread($post)->withReplies($replies);
 }