ziad181 / database-of-countries-and-cities
This package contains a database of all countries and cities in 3 different languages: English, Arabic and French.
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/ziad181/database-of-countries-and-cities
Requires
- php: >=7.3
- illuminate/support: >=7.3
This package is auto-updated.
Last update: 2025-10-14 14:47:09 UTC
README
This package contains a database of all countries and cities in 3 different languages: English, Arabic and French.
-
install the package
composer require ziad181/database-of-countries-and-cities -
You can publish using the following command
php artisan vendor:publish --provider="Ziad181\DatabaseOfCountriesAndCities\CountriesServiceProvider"
- Export the tables to the database
php artisan migrate
- Open the DatabaseSeeder file and add the following code:
$this->call([ CountrySeeder::class, CitySeeder::class, ]);
- Export data to the database
php artisan db:seed