public function getCrear()
 {
     $productores = Productor::all();
     $departamentos = Departamento::all();
     $municipios = Municipio::all();
     return view('fincas.crear', array('productores' => $productores, 'departamentos' => $departamentos, 'municipios' => $municipios));
 }
 public function getCrear()
 {
     $productores = Productor::all();
     $certificaciones = Certificacion::all();
     return view('certificacionesProductores.crear', array('productores' => $productores, 'certificaciones' => $certificaciones));
 }