9e5386264f
* SimBrief integration #405 * Add briefing as API response; add acars_xml field #405
33 lines
709 B
PHP
33 lines
709 B
PHP
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
use App\Contracts\Resource;
|
|
|
|
class PirepComment extends Resource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
*
|
|
* @return array
|
|
*/
|
|
public function toArray($request)
|
|
{
|
|
$user = $this->user;
|
|
|
|
return [
|
|
'id' => $this->id,
|
|
'comment' => $this->comment,
|
|
'created_at' => $this->created_at,
|
|
'user' => [
|
|
'id' => $user->id,
|
|
'pilot_id' => $user->pilot_id,
|
|
'ident' => $user->ident,
|
|
'name' => $user->name,
|
|
],
|
|
];
|
|
}
|
|
}
|