NotificationStatus.php 158 B

123456789101112
  1. <?php
  2. namespace App\Models\Enums;
  3. enum NotificationStatus: string
  4. {
  5. case DRAFT = "draft";
  6. case RELEASE = "release";
  7. case CANCEL = "cancel";
  8. }