20 lines
699 B
PHP
20 lines
699 B
PHP
<?php
|
|
|
|
namespace App\Ramcar;
|
|
|
|
class NoTradeInReason extends NameValue
|
|
{
|
|
const NO_EXISTING_BATTERY = 'no_existing_battery';
|
|
const SELL_OTHER_SHOP = 'sell_other_shop';
|
|
const SPARE_BATTERY = 'used_as_spare_battery';
|
|
const RETURN_BATTERY_COMPANY = 'return_battery_company';
|
|
const LOW_TRADE_IN_VALUE = 'low_trade_in_value';
|
|
|
|
const COLLECTION = [
|
|
'no_existing_battery' => 'No existing battery',
|
|
'sell_other_shop' => 'Sell to other shop',
|
|
'used_as_spare_battery' => 'Used as spare battery',
|
|
'return_battery_company' => 'Need to return battery to company',
|
|
'low_trade_in_value' => 'Trade in value is low',
|
|
];
|
|
}
|