follow
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
enum FollowStatus: string
|
||||
{
|
||||
case Pending = 'pending';
|
||||
case Accepted = 'accepted';
|
||||
case Rejected = 'rejected';
|
||||
case Blocked = 'blocked';
|
||||
}
|
||||
Reference in New Issue
Block a user