ichtrojan / laravel-location

A simple Laravel Package to sort Countries, States and Cities
MIT License
205 stars 44 forks source link

Not All Countries Have States #15

Closed erayaydin closed 4 years ago

erayaydin commented 5 years ago

Hello,

In Turkey, we have not states. We only have cities and towns. Because of this, there are duplicated items on cities and states. For example; Istanbul in CitiesTableSeeder and also Istanbul in StatesTableSeeder

ichtrojan commented 5 years ago

Can you please correct it in a PR

reachfirst7054 commented 5 years ago

There is an issue with country Pakistan as well.

djunehor commented 4 years ago

One way to fix this is to add country_id column to cities table. Then create a relationship between City and Country Models. One can then create a route to get cities by country e.g Route::get('country/{countryId}/cities', 'LocationController@getCitiesByCountry');