["required", new Enum(VacationType::class)], "from" => ["required", "date_format:Y-m-d", new YearPeriodExists()], "to" => ["required", "date_format:Y-m-d", new YearPeriodExists()], "comment" => ["nullable"], ]; } public function data(): array { return [ "type" => $this->get("type"), "from" => $this->get("from"), "to" => $this->get("to"), "comment" => $this->get("comment"), ]; } }