feat: Initialize core application structure including authentication, role-based dashboards, service task management, and integration workflows.
This commit is contained in:
14
app/Enums/IntegrationStatus.php
Normal file
14
app/Enums/IntegrationStatus.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
enum IntegrationStatus: string
|
||||
{
|
||||
case Draft = 'draft';
|
||||
case PendingRHValidation = 'pending_rh_validation';
|
||||
case InProgress = 'in_progress';
|
||||
case WaitingServices = 'waiting_services';
|
||||
case Completed = 'completed';
|
||||
case Cancelled = 'cancelled';
|
||||
case Rejected = 'rejected';
|
||||
}
|
||||
Reference in New Issue
Block a user