model-enums.php 582 B

1234567891011121314151617
  1. <?php
  2. use \App\Models\Enums\ProjectStatus;
  3. return [
  4. 'project' => [
  5. 'status' => [
  6. ProjectStatus::DOING->value => "In progress",
  7. ProjectStatus::WAIT->value => "Not Submitted",
  8. ProjectStatus::DONE->value => "A-Approved & B-Approved w/comment",
  9. ProjectStatus::PAUSE->value => "C-Amendment & Resubmission Req’d",
  10. ProjectStatus::CLOSED->value => "D-Rejected",
  11. ProjectStatus::CANCEL->value => "Cancelled",
  12. ProjectStatus::PENDING_REVIEW->value => "Pending for Approval",
  13. ]
  14. ]
  15. ];