| Package Data | |
|---|---|
| Maintainer Username: | ijeffro |
| Maintainer Contact: | phil@flairdesign.uk (Phil Graham) |
| Package Create Date: | 2016-11-18 |
| Package Last Update: | 2025-01-16 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-10-30 03:00:25 |
| Package Statistics | |
|---|---|
| Total Downloads: | 7,989 |
| Monthly Downloads: | 21 |
| Daily Downloads: | 0 |
| Total Stars: | 3 |
| Total Watchers: | 1 |
| Total Forks: | 4 |
| Total Open Issues: | 2 |
Laravel Airlines is a bundle for Laravel, providing Iata Code ISO 3166_3 and country codes for all the airlines.
Please note that the dev-master version is for Laravel 5 only
Run composer require ijeffro/laravel-airlines dev-master in your Laravel root directory to install the latest version.
Or add ijeffro/laravel-airlines to composer.json.
"ijeffro/laravel-airlines": "dev-master"
Run composer update to pull down the latest version of Airline List.
Edit app/config/app.php and add the provider and filter
'providers' => [
ijeffro\Airlines\AirlinesServiceProvider::class,
]
Now add the alias.
'aliases' => [
'Airlines' => ijeffro\Airlines\AirlinesFacade::class,
]
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 airlines suits you, leave it. Otherwise run the following command
$ php artisan vendor:publish
Next generate the migration file:
$ php artisan airlines:migration
$ composer dump-autoload
It will generate the <timestamp>_setup_airlines_table.php migration and the AirlinesSeeder.php seeder. To make sure the data is seeded insert the following code in the seeds/DatabaseSeeder.php
//Seed the airlines
$this->call('AirlinesSeeder');
$this->command->info('Seeded the airlines!');
You may now run it with the artisan migrate command:
$ php artisan migrate --seed
After running this command the filled airlines table will be available