mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 04:24:12 +00:00
13 lines
371 B
PHP
13 lines
371 B
PHP
<?php
|
|
|
|
namespace App\Classes\ValueObjects\Constants;
|
|
|
|
class PerfexCRMMilestones
|
|
{
|
|
public const MILESTONE_1 = 'MILESTONE 1 - Customer Paid';
|
|
public const MILESTONE_2 = 'MILESTONE 2 - Order Placed';
|
|
public const MILESTONE_3 = 'MILESTONE 3 - Purchase Order Approved';
|
|
public const MILESTONE_4 = 'MILESTONE 4';
|
|
public const MILESTONE_5 = 'MILESTONE 5';
|
|
}
|