*/ class Note extends JsonResource { /** * Transform the resource into an array. * * @param \Illuminate\Http\Request $request * @return array */ public function toArray($request) { return [ 'id' => $this->id, 'object' => 'note', 'body' => $this->body, 'is_favorited' => (bool) $this->is_favorited, 'favorited_at' => DateHelper::getTimestamp($this->favorited_at), 'url' => route('api.note', $this->id), 'account' => [ 'id' => $this->account_id, ], 'contact' => new ContactShortResource($this->contact), 'created_at' => DateHelper::getTimestamp($this->created_at), 'updated_at' => DateHelper::getTimestamp($this->updated_at), ]; } }