'rows', 'default' => 5, 'rules' => ['rows' => 'present|integer|gt:0'], 'label' => 'Zeilen'], ['key' => 'required', 'default' => false, 'rules' => ['required' => 'present|boolean'], 'label' => 'Erforderlich'], ]; } public static function default(): string { return ''; } public static function fake(Generator $faker): array { return [ 'rows' => $faker->numberBetween(5, 10), 'required' => $faker->boolean(), ]; } /** * @inheritdoc */ public function getRegistrationRules(): array { return [$this->key => $this->required ? ['required', 'string'] : ['nullable', 'string']]; } /** * @inheritdoc */ public function getRegistrationAttributes(): array { return [$this->key => $this->name]; } /** * @inheritdoc */ public function getRegistrationMessages(): array { return []; } /** * @inheritdoc */ public function afterRegistration(Form $form, Participant $participant, array $input): void { } }