/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $facts = QuestionAnswer::all();
     return $this->respond(['data' => $this->questionAnswerTransformer->transformCollection($facts->toArray())]);
 }