ConfigGroup.php 148 B

12345678910
  1. <?php
  2. namespace App\Models\Enums;
  3. enum ConfigGroup: string
  4. {
  5. case EMAIL = "email";
  6. case MESSAGE_NOTIFICATION = "message_notification";
  7. }