41 lines
1.6 KiB
PHP
41 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace App\Ramcar;
|
|
|
|
class DeliveryStatus extends NameValue
|
|
{
|
|
const RIDER_ASSIGN = 'rider_assign';
|
|
const REQUEUE = 'requeue';
|
|
const RIDER_ACCEPT = 'rider_accept';
|
|
const RIDER_ARRIVE = 'rider_arrive';
|
|
const RIDER_EDIT = 'rider_edit';
|
|
const RIDER_DEPART_HUB = 'rider_depart_hub';
|
|
const RIDER_ARRIVE_HUB_PRE_JO = 'rider_arrive_hub_pre_jo';
|
|
const RIDER_DEPART_HUB_PRE_JO = 'rider_depart_hub_pre_jo';
|
|
const RIDER_START = 'rider_start';
|
|
const RIDER_END = 'rider_end';
|
|
const RIDER_ARRIVE_HUB_POST_JO = 'rider_arrive_hub_post_jo';
|
|
const RIDER_DEPART_HUB_POST_JO = 'rider_depart_hub_post_jo';
|
|
const RIDER_ARRIVE_HUB = 'rider_arrive_hub';
|
|
const CANCELLED = 'cancelled';
|
|
const FULFILLED = 'fulfilled';
|
|
|
|
const COLLECTION = [
|
|
'rider_assign' => 'Assigned Rider',
|
|
'requeue' => 'Requeue',
|
|
'rider_accept' => 'Rider Accept',
|
|
'rider_arrive' => 'Rider Arrive',
|
|
'rider_edit' => 'Rider Edit',
|
|
'rider_depart_hub' => 'Rider Depart Hub',
|
|
'rider_arrive_hub_pre_jo' => 'Rider Arrive Hub Pre JO',
|
|
'rider_depart_hub_pre_jo' => 'Rider Depart Hub Pre JO',
|
|
'rider_start' => 'Rider Start',
|
|
'rider_end' => 'Rider End',
|
|
'rider_arrive_hub_post_jo' => 'Rider Arrive Hub Post JO',
|
|
'rider_depart_hub_post_jo' => 'Rider Depart Hub Post JO',
|
|
'rider_arrive_hub' => 'Rider Arrive Hub',
|
|
'cancelled' => 'Cancelled',
|
|
'fulfilled' => 'Fulfilled',
|
|
];
|
|
}
|
|
|