/**
  * Show the form for editing the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function edit($id)
 {
     $documentocrm = \App\DocumentoCRM::find($id);
     $grupoestado = \App\GrupoEstado::All()->lists('nombreGrupoEstado', 'idGrupoEstado');
     return view('documentocrm', compact('grupoestado'), ['documentocrm' => $documentocrm]);
 }
 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     \App\GrupoEstado::destroy($id);
     return redirect('/grupoestado');
 }