function listQuestions()
 {
     $questions = Question::latest()->get();
     return view('pages/questions/list', compact('questions'));
 }