Akaunting/app/Http/Resources/Common/ContactPerson.php

32 lines
964 B
PHP
Raw Normal View History

2023-10-03 08:06:08 +00:00
<?php
namespace App\Http\Resources\Common;
use Illuminate\Http\Resources\Json\JsonResource;
class ContactPerson extends JsonResource
{
/**
* Transform the resource into an array.
*
* @param \Illuminate\Http\Request $request
* @return array|\Illuminate\Contracts\Support\Arrayable|\JsonSerializable
*/
public function toArray($request)
{
return [
'id' => $this->id,
'company_id' => $this->company_id,
'type' => $this->type,
'contact_id' => $this->contact_id,
'name' => $this->name,
'email' => $this->email,
'phone' => $this->phone,
'created_from' => $this->created_from,
'created_by' => $this->created_by,
'created_at' => $this->created_at ? $this->created_at->toIso8601String() : '',
'updated_at' => $this->updated_at ? $this->updated_at->toIso8601String() : '',
];
}
}