'createdAt', 'updated_at' => 'updatedAt', ]; } public function beforeCreate() { $this->createdAt = date('Y-m-d H:i:s'); $this->updatedAt = $this->createdAt; } public function beforeUpdate() { $this->updatedAt = date('Y-m-d H:i:s'); } }