2017-12-13 06:58:27 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
|
2020-03-23 21:31:35 +08:00
|
|
|
use App\Contracts\Resource;
|
|
|
|
|
|
|
|
class Airline extends Resource
|
2017-12-13 06:58:27 +08:00
|
|
|
{
|
|
|
|
public function toArray($request)
|
|
|
|
{
|
|
|
|
return [
|
2018-03-20 09:50:40 +08:00
|
|
|
'id' => $this->id,
|
|
|
|
'icao' => $this->icao,
|
|
|
|
'iata' => $this->iata,
|
|
|
|
'name' => $this->name,
|
2017-12-13 06:58:27 +08:00
|
|
|
'country' => $this->country,
|
2018-03-20 09:50:40 +08:00
|
|
|
'logo' => $this->logo,
|
2018-08-27 00:40:04 +08:00
|
|
|
//'active' => $this->active,
|
|
|
|
//'created_at' => $this->created_at,
|
|
|
|
//'updated_at' => $this->updated_at,
|
2017-12-13 06:58:27 +08:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|