diff --git a/src/Fields/BooleanField.php b/src/Fields/BooleanField.php index a0457fb..8a419c8 100644 --- a/src/Fields/BooleanField.php +++ b/src/Fields/BooleanField.php @@ -10,7 +10,7 @@ class BooleanField extends NebulaField protected string $false = 'False'; /** - * Set the true label + * Set the true label. * * @param string $label * @return $this @@ -23,7 +23,7 @@ public function true(string $label): self } /** - * Set the false label + * Set the false label. * * @param string $label * @return $this diff --git a/src/Fields/TextareaField.php b/src/Fields/TextareaField.php index 04b565c..f1e4593 100644 --- a/src/Fields/TextareaField.php +++ b/src/Fields/TextareaField.php @@ -8,7 +8,5 @@ class TextareaField extends NebulaField { - use HasHelperText; - - use HasPlaceholder; + use HasPlaceholder, HasHelperText; }