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