/**
  * Show the form for creating a new resource.
  *
  * @return Response
  */
 public function create($id)
 {
     $interesados = Interesado::getListCmb($id);
     $proyecto = Proyecto::find($id);
     $this->layout->title = 'Nuevo Interesado';
     $this->layout->titulo = 'Gestión de Proyectos';
     $this->layout->nest('content', 'interesadosproyectos.create', array('proyecto' => $proyecto, 'interesados' => $interesados));
 }
 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     $interesado = Interesado::find($id);
     $interesado->delete();
     Session::flash('message', 'Registro eliminado satisfactoriamente!');
     return Redirect::to('interesados');
 }