fix text format
This commit is contained in:
@@ -32,7 +32,7 @@ class Slug implements FieldInterface, RequiredInterface
|
||||
|
||||
public function format(array $input, array $output): array
|
||||
{
|
||||
$value = $input[$this->name] ?? null;
|
||||
$value = (string)$input[$this->name] ?? null;
|
||||
if(empty($value)){
|
||||
$value = Str::slug($input[$this->source]);
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ class Text implements FieldInterface, RequiredInterface
|
||||
|
||||
public function format(array $input, array $output): array
|
||||
{
|
||||
$value = $input[$this->name] ?? null;
|
||||
$value = (string)$input[$this->name] ?? null;
|
||||
$output[$this->name] = (new Nullable($this->nullable, $value, ""))->value();
|
||||
return $output;
|
||||
}
|
||||
|
||||
@@ -31,7 +31,7 @@ class Textarea implements FieldInterface, RequiredInterface
|
||||
|
||||
public function format(array $input, array $output): array
|
||||
{
|
||||
$value = $input[$this->name] ?? null;
|
||||
$value = (string)$input[$this->name] ?? null;
|
||||
$output[$this->name] = (new Nullable($this->nullable, $value, ""))->value();
|
||||
return $output;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user