faker->unique()->words(2, true); return [ 'label' => ucfirst($label), 'key' => Str::slug($label, '_'), 'type' => CustomFieldType::Text->value, 'options' => null, 'is_required' => false, 'sort_order' => 0, ]; } public function select(array $options): static { return $this->state(fn () => [ 'type' => CustomFieldType::Select->value, 'options' => $options, ]); } }