public function destroy($id)
 {
     //
     $pregunta = pregunta::find($id);
     $pregunta->delete();
     return redirect()->back();
 }