$this->name, //'created_at' => $this->created_at, //'updated_at' => $this->created_at, 'description' => $this->description, 'typ' => $this->typ, 'value' => $this->value, ]; if($this->typ == "checkbox") { $data["value"] = (bool)$this->value; } if($this->typ == "password") { $data["value"] = null; } return $data; } }