Version 0.7.0 #1

Merged
kor-elf merged 90 commits from develop into main 2023-12-08 21:18:23 +06:00
Showing only changes of commit 79112680bd - Show all commits

View File

@ -19,17 +19,17 @@ final class Input extends Form
return $this->name;
}
protected function getTitle(): string
private function getTitle(): string
{
return Str::ucfirst($this->title);
}
protected function getType(): string
private function getType(): string
{
return $this->type;
}
protected function getValue(): string
private function getValue(): string
{
return (string) old($this->getRequestName(), $this->value);
}