withMeta(['maxlength' => $value]); if ($enforce) { $this->enforceMaxlength(); } return $this; } /** * Indicate that maxlength should be enforced on the field. * * @return $this */ public function enforceMaxlength() { $this->withMeta(['enforceMaxlength' => true]); return $this; } }