18 lines
442 B
PHP
18 lines
442 B
PHP
<?php
|
|
|
|
namespace App\Ramcar;
|
|
|
|
class InsuranceVehicleLine extends NameValue
|
|
{
|
|
const PCOC = 'pcoc';
|
|
const MCOC = 'mcoc';
|
|
const CCOC = 'ccoc';
|
|
const LCOC = 'lcoc';
|
|
|
|
const COLLECTION = [
|
|
'pcoc' => 'Private Car',
|
|
'mcoc' => 'Motorcycle / Motorcycle with Sidecar / Tricycle (Private)',
|
|
'ccoc' => 'Commercial Vehicle',
|
|
'lcoc' => 'Motorcycle / Motorcycle with Sidecar / Tricycle (Public)',
|
|
];
|
|
}
|