initial
This commit is contained in:
11
app/Enums/TravelStatus.php
Normal file
11
app/Enums/TravelStatus.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
enum TravelStatus: string
|
||||
{
|
||||
case Draft = 'Draft';
|
||||
case Pending = 'Pending';
|
||||
case Approved = 'Approved';
|
||||
case Rejected = 'Rejected';
|
||||
}
|
||||
Reference in New Issue
Block a user