lartie / airports
Airports for Laravel
v1.2
2016-07-28 08:20 UTC
Requires
- php: >=5.5.9
- laravel/framework: 5.2.*
This package is not auto-updated.
Last update: 2024-11-09 20:12:22 UTC
README
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