ip = $ip; $this->createdAt = new Carbon(); } public function getIP(): string { return $this->ip; } public function getCreatedAt(): DateTimeInterface { return $this->createdAt; } public function setCreatedAt(DateTimeInterface $createdAt): void { $this->createdAt = $createdAt; } }