11 lines
153 B
PHP
11 lines
153 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
enum PaymentStatus: string
|
|
{
|
|
case Pending = 'pending';
|
|
case Received = 'received';
|
|
case NotApplicable = 'na';
|
|
}
|