Exemplo n.º 1
0
 public function replyTopicView(Request $request)
 {
     $topic = new Topic();
     $reply_id = $request->replyReq['data']['id'];
     $data = $topic->getSingleReply($reply_id);
     return view('html.topic-reply', compact('data'));
 }