Initial Commit
This commit is contained in:
11
app/UserStatus.php
Normal file
11
app/UserStatus.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
enum UserStatus: string
|
||||
{
|
||||
case Pending = "pending";
|
||||
case Active ="active";
|
||||
case Inactive = "inactive";
|
||||
case Rejected = "rejected";
|
||||
}
|
||||
Reference in New Issue
Block a user