/**
  * Display the specified resource.
  *
  * @param  Question  $question
  * @return Response
  */
 public function show($question)
 {
     return $question->load('keywords');
     return view('faq.show')->withQuestion($question);
 }