/**
  * Display a listing of topics
  *
  * @return Response
  */
 public function index()
 {
     $topics = Posts_topic::all();
     return View::make('topics.index', compact('topics'));
 }