/**
  * Show the form for creating a new resource.
  *
  * @return Response
  */
 public function getCreate()
 {
     $pais = Pais::lists('nombre', 'id')->all();
     return view('departamentos.create', compact('pais'));
 }