public function getViewTestimonio($id)
 {
     $testimonio = Testimonio::find($id)->cuerpo;
     return view('testimonio.view_internet', compact('testimonio'));
 }
 public function getView($id)
 {
     $testimonio = Testimonio::find($id);
     $editor = $testimonio->cuerpo;
     return view('testimonio.view', compact('editor'));
 }