*/ public function toArray(Request $request): array { return [ "id" => $this->id, "name" => $this->name, "task_type" => $this->task_type, "status" => $this->status, "assign" => new UserProfileResource($this->assignTo), "end" => $this->end, "finished_by" => new UserProfileResource($this->finishedBy), ]; } }