countries
countries copied to clipboard
Can you list the cities of a certain state?
$countries = new Countries();
$collection = $countries->where('cca3', $country)->first()->hydrateCities()->cities->where('adm1name', $state);
hi @dcrawkstar , its not returning the list of cities in a state.
$countries = new Countries();
$collection = $countries->where('cca3', $country)->first()->hydrateCities()->cities->where('adm1name', $state);
Hi @dcrawkstar we need to get the list of cities in a state, not in a country. The data returned from cities does not include the state it is located in.