2017 © Pedro Peláez
 

laravel-library laravel-airports

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

image

ijeffro/laravel-airports

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

  • Wednesday, October 18, 2017
  • by ijeffro
  • Repository
  • 1 Watchers
  • 2 Stars
  • 90 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 3 Forks
  • 0 Open issues
  • 1 Versions
  • 2 % Grown

The README.md

Laravel Airports

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

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

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

Installation

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

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

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

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

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

'providers' => [
    ijeffro\Airports\AirportsServiceProvider::class,
]

Now add the alias., (*8)

'aliases' => [
    'Airports' => ijeffro\Airports\AirportsFacade::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 airports suits you, leave it. Otherwise run the following command, (*9)

$ php artisan vendor:publish

Next generate the migration file:, (*10)

$ php artisan airports:migration
$ composer dump-autoload

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

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

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

$ php artisan migrate --seed

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

The Versions

18/10 2017

dev-master

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

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

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

by Avatar ijeffro

laravel iso_3166_3 country_code airports