lartie/airports

Airports for Laravel
22 3
Install
composer require lartie/airports
Latest Version:v1.2
PHP:>=5.5.9
License:MIT
Last Updated:Jul 28, 2016
Links: GitHub  ·  Packagist
Maintainer: lartie

Airports for Laravel 5

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

Related Packages

ijeffro/laravel-airports

Laravel Airports is a bundle for Laravel, providing Iata Code ISO 3166 3 and cou...

3,472 4
andhikamaheva/date

A date library to help you work with dates in different languages

13 1
vlados/laravel-blade-crawler-detect

Boost Lighthouse and PageSpeed scores by hiding cookie banners, chat widgets and...

5,439 0
wobeto/twitter

Laravel 4 Service Provider to interact with twitter account, like return a colle...

135 1