20 lines
447 B
PHP
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',
|
|
];
|
|
}
|