16 lines
417 B
PHP
16 lines
417 B
PHP
<?php
|
|
|
|
namespace App\Ramcar;
|
|
|
|
class AutoAssignStatus extends NameValue
|
|
{
|
|
const NOT_ASSIGNED = 'not_assigned';
|
|
const HUB_ASSIGNED = 'hub_assigned';
|
|
const HUB_AND_RIDER_ASSIGNED = 'hub_and_rider_assigned';
|
|
|
|
const COLLECTION = [
|
|
'not_assigned' => 'Not Assigned',
|
|
'hub_assigned' => 'Hub Assigned',
|
|
'hub_and_rider_assgined' => 'Hub and Rider Assigned',
|
|
];
|
|
}
|