public function getTopic($slug)
 {
     $topic = Topic::findBySlug($slug);
     return view('topics.show')->with('topic', $topic);
 }