2017-12-13 06:58:27 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
|
|
|
|
use Illuminate\Http\Resources\Json\Resource;
|
|
|
|
|
|
|
|
class UserBid extends Resource
|
|
|
|
{
|
|
|
|
public function toArray($request)
|
|
|
|
{
|
|
|
|
return [
|
2018-03-20 09:50:40 +08:00
|
|
|
'id' => $this->id,
|
|
|
|
'user_id' => $this->user_id,
|
2017-12-13 06:58:27 +08:00
|
|
|
'flight_id' => $this->flight_id,
|
2018-08-27 00:40:04 +08:00
|
|
|
'flights' => Flight::collection($this->whenLoaded('flight')),
|
|
|
|
//'created_at' => $this->created_at,
|
|
|
|
//'updated_at' => $this->updated_at,
|
2017-12-13 06:58:27 +08:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|