/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index(Ciudad $ciudad)
 {
     //
     $ciudades = $ciudad->get();
     return view('ciudades', compact("ciudades"));
 }
 /**
  * Show the form for creating a new resource.
  *
  * @return Response
  */
 public function create(Ciudad $ciudad)
 {
     //
     $ciudades = $ciudad->get();
     return view("crear_restaurantes_internacionales", compact("ciudades"));
 }