*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'name' => $this->name, 'images' => $this->images, 'employee_id' => $this->employee_id, 'employee' => EmployeeResource::make($this->whenLoaded('employee')), 'workflow_check' => WorkflowCheckResource::make($this->whenLoaded('workflow')), 'created_at' => $this->created_at->timestamp, ]; } }