PushNotificationCategoryEnum.php 251 B

1234567891011121314
  1. <?php
  2. namespace App\Enums;
  3. enum PushNotificationCategoryEnum: string
  4. {
  5. // Marketing
  6. case MARKETING = 'marketing';
  7. case MANUAL = 'manual';
  8. // Transacional
  9. case AGENDA = 'agenda';
  10. case TRANSACIONAL = 'transacional';
  11. }