You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
662 B
28 lines
662 B
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class EmployeeGroup extends JsonResource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @return array
|
|
*/
|
|
public function toArray($request)
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
'pid' => $this->pid,
|
|
'title' => $this->title,
|
|
'level' => $this->level,
|
|
'description' => $this->description,
|
|
'base_salary' => $this->base_salary,
|
|
'status' => $this->status,
|
|
'rules' => $this->rules,
|
|
];
|
|
}
|
|
}
|
|
|