*/ public function toArray(Request $request): array { return [ "id" => $this->id, "name" => $this->name, "parent_id" => $this->parent_id, "begin" => $this->begin, "end" => $this->end, "status" => $this->status, "assign_to" => new UserProfileResource($this->assignTo), "created_by" => new UserProfileResource($this->createdBy), "children" => TaskResource::collection($this->children), ]; } }