16 lines
305 B
PHP
16 lines
305 B
PHP
<?php
|
|
|
|
namespace App\Ramcar;
|
|
|
|
class TradeInType extends NameValue
|
|
{
|
|
const PREMIUM = 'premium';
|
|
const MOTOLITE = 'motolite';
|
|
const OTHER = 'other';
|
|
|
|
const COLLECTION = [
|
|
'premium' => 'Premium',
|
|
'motolite' => 'Motolite',
|
|
'other' => 'Other',
|
|
];
|
|
}
|