id = $data['id'] ?? 0; $this->name = $data['name'] ?? ''; $this->clientId = $data['clientId'] ?? null; $this->projectId = $data['projectId'] ?? $this->id; // Handle dates $this->start = ! empty($data['start']) ? $data['start'] : null; $this->end = ! empty($data['end']) ? $data['end'] : null; // Project metadata $this->type = $data['type'] ?? ''; $this->state = $data['state'] ?? ''; $this->menuType = $data['menuType'] ?? ''; $this->status = $data['status'] ?? ''; // Project metrics $this->numberOfTickets = $data['numberOfTickets'] ?? 0; $this->progress = $data['progress'] ?? 0; $this->sortIndex = $data['sortIndex'] ?? 0; // Related data $this->milestones = $data['milestones'] ?? null; $this->report = $data['report'] ?? null; $this->clientName = $data['clientName'] ?? ''; // Additional properties $this->lastUpdate = $data['lastUpdate'] ?? null; $this->isFavorite = $data['isFavorite'] ?? false; } }