feat: add PersonStatus enum and PortalMeRequest form request

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-14 19:04:10 +02:00
parent 312663fb02
commit ae7ba63822
2 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php
declare(strict_types=1);
namespace App\Enums;
enum PersonStatus: string
{
case INVITED = 'invited';
case APPLIED = 'applied';
case PENDING = 'pending';
case APPROVED = 'approved';
case REJECTED = 'rejected';
case NO_SHOW = 'no_show';
}