22 lines
631 B
PHP
22 lines
631 B
PHP
<?php
|
|
|
|
namespace App\Ramcar;
|
|
|
|
class CMBCancelReason extends NameValue
|
|
{
|
|
const ACCIDENT = 'accident';
|
|
const BREAKDOWN = 'breakdown';
|
|
const FUEL_RUNOUT = 'fuel_runout';
|
|
const WRONG_BATTERY_SIZE = 'wrong_battery_size';
|
|
const CUSTOMER_CANCEL = 'customer_cancel';
|
|
const OTHERS = 'others';
|
|
|
|
const COLLECTION = [
|
|
'accident' => 'Accident',
|
|
'breakdown' => 'Breakdown',
|
|
'fuel_runout' => 'Fuel Runout',
|
|
'wrong_battery_size' => 'Wrong Battery Size',
|
|
'customer_cancel' => 'Cancelled by Customer',
|
|
'others' => 'Others'
|
|
];
|
|
}
|