lartie/airports

Airports for Laravel

v1.2 2016-07-28 08:20 UTC

This package is not auto-updated.

Last update: 2024-03-16 16:36:38 UTC


README

Latest Stable Version Total Downloads Latest Unstable Version License composer.lock

Install

composer require lartie/airports
'providers' => [
  ...
  LArtie\Airports\AirportsServiceProvider::class,
]
php artisan vendor:publish

php artisan migrate

php artisan airports:install

Usage

$country = Country::where('name_en', 'Russia')->first();

$city = $country->cities()->first();
$city->name_en;
$city->name_ru;

$country = $city->country()->first();
$country->name_en;
$country->name_ru;
$country->iso_code;

$airport = $city->airports()->first();
$airport->gmt_offset;
$airport->iata_code;
$airport->icao_code;

$city = $airport->city()->first();

License

MIT