CustomFieldGroupType.php 149 B

12345678910
  1. <?php
  2. namespace App\Models\Enums;
  3. enum CustomFieldGroupType: string
  4. {
  5. case NAMING_RULE = 'naming_rule';
  6. case DICTIONARY = 'dictionary';
  7. }