14 lines
256 B
PHP
14 lines
256 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
enum ConsultationStatus: string
|
|
{
|
|
case Pending = 'pending';
|
|
case Approved = 'approved';
|
|
case Rejected = 'rejected';
|
|
case Completed = 'completed';
|
|
case NoShow = 'no_show';
|
|
case Cancelled = 'cancelled';
|
|
}
|