<?php
namespace App\Enums;
enum EntryFlags: string
{
case WILL_ADVANCE = 'will_advance';
case DECLINED = 'declined';
case NO_SHOW = 'no_show';
case FAILED_PRELIM = 'failed_prelim';
}
Powered by TurnKey Linux.