14 lines
255 B
PHP
14 lines
255 B
PHP
<?php
|
|
|
|
namespace App\Ramcar;
|
|
|
|
class VehicleStatusCondition extends NameValue
|
|
{
|
|
const BRAND_NEW = 'new';
|
|
const SECOND_HAND = 'second-hand';
|
|
|
|
const COLLECTION = [
|
|
'new' => 'Brand New',
|
|
'second-hand' => 'Second-Hand',
|
|
];
|
|
}
|