public function deleteDestroy($id)
 {
     $votaciones = VtVotacion::findOrFail($id);
     $votaciones->delete();
     return $votaciones;
 }