27 lines
794 B
PHP
27 lines
794 B
PHP
<?php
|
|
|
|
namespace Modules\User\Transformers;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class EmploymentResource extends JsonResource
|
|
{
|
|
public function toArray(Request $request): array
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
'user_id' => $this->user_id,
|
|
'company_name' => $this->company_name,
|
|
'job_title' => $this->job_title,
|
|
'employment_type' => $this->employment_type,
|
|
'salary' => $this->salary,
|
|
'start_date' => $this->start_date,
|
|
'end_date' => $this->end_date,
|
|
'is_current' => $this->is_current,
|
|
'created_at' => $this->created_at?->toISOString(),
|
|
'updated_at' => $this->updated_at?->toISOString(),
|
|
];
|
|
}
|
|
}
|