resq/src/Ramcar/CustomerClassification.php
2018-01-31 23:55:16 +08:00

20 lines
447 B
PHP

<?php
namespace App\Ramcar;
class CustomerClassification extends NameValue
{
const REGULAR = 'regular';
const MEDIA = 'media';
const VIP = 'vip';
const BLACKLISTED = 'blacklisted';
const OTHER = 'other';
const COLLECTION = [
'regular' => 'Regular',
'media' => 'Media',
'vip' => 'VIP',
'blacklisted' => 'Blacklisted',
'other' => 'Other',
];
}