list airports api
This commit is contained in:
19
app/Libraries/IotaCodes/AirportTransformer.php
Normal file
19
app/Libraries/IotaCodes/AirportTransformer.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
namespace App\Libraries\IotaCodes;
|
||||
|
||||
use League\Fractal\TransformerAbstract;
|
||||
|
||||
class AirportTransformer extends TransformerAbstract
|
||||
{
|
||||
public function transform(Airport $airport)
|
||||
{
|
||||
return [
|
||||
'id' => $airport->code,
|
||||
'name' => $airport->name,
|
||||
'links' => [
|
||||
'rel' => 'self',
|
||||
'uri' => '/airports/'.$airport->code,
|
||||
]
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user