2017 © Pedro Peláez
 

laravel-library laravel-cities

Laravel Cities is a bundle for Laravel, providing Iata Code ISO 3166 3 and country codes for all the cities.

image

ijeffro/laravel-cities

Laravel Cities is a bundle for Laravel, providing Iata Code ISO 3166 3 and country codes for all the cities.

  • Wednesday, October 18, 2017
  • by ijeffro
  • Repository
  • 1 Watchers
  • 7 Stars
  • 431 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 5 Forks
  • 0 Open issues
  • 1 Versions
  • 5 % Grown

The README.md

Laravel Cities

Latest Stable Version Total Downloads Latest Unstable Version License, (*1)

Laravel Cities is a bundle for Laravel, providing Iata Code ISO 3166_3 and country codes for all the cities., (*2)

Please note that the dev-master version is for Laravel 5 only, (*3)

Installation

Run composer require ijeffro/laravel-cities dev-master in your Laravel root directory to install the latest version., (*4)

Or add ijeffro/laravel-cities to composer.json., (*5)

"ijeffro/laravel-cities": "dev-master"

Run composer update to pull down the latest version of City List., (*6)

Edit app/config/app.php and add the provider and filter, (*7)

'providers' => [
    ijeffro\Cities\CitiesServiceProvider::class,
]

Now add the alias., (*8)

'aliases' => [
    'Cities' => ijeffro\Cities\CitiesFacade::class,
]

Model

You can start by publishing the configuration. This is an optional step, it contains the table name and does not need to be altered. If the default name cities suits you, leave it. Otherwise run the following command, (*9)

$ php artisan vendor:publish

Next generate the migration file:, (*10)

$ php artisan cities:migration
$ composer dump-autoload

It will generate the <timestamp>_setup_cities_table.php migration and the CitiesSeeder.php seeder. To make sure the data is seeded insert the following code in the seeds/DatabaseSeeder.php, (*11)

//Seed the cities
$this->call('CitiesSeeder');
$this->command->info('Seeded the cities!');

You may now run it with the artisan migrate command:, (*12)

$ php artisan migrate --seed

After running this command the filled cities table will be available, (*13)

The Versions

18/10 2017

dev-master

9999999-dev https://github.com/ijeffro/laravel-cities

Laravel Cities is a bundle for Laravel, providing Iata Code ISO 3166 3 and country codes for all the cities.

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

by Avatar ijeffro

laravel cities iso_3166_3 country_code