resq/src/Ramcar/InsuranceMVType.php

32 lines
840 B
PHP

<?php
namespace App\Ramcar;
class InsuranceMVType extends NameValue
{
const CAR = '1';
const SHUTTLE_BUS = '2';
const MOTORCYCLE = '3';
const MC_WITH_SIDECAR = '4';
const NON_CONVENTIONAL = '5';
const SUV = '8';
const TRUCK = '9';
const TRAILER = '10';
const UV_PRIVATE = '11';
const UV_COMMERCIAL = '12';
const TRICYCLE = '13';
const COLLECTION = [
'1' => "Car",
'2' => "Shuttle Bus",
'3' => "Motorcycle",
'4' => "Motorcycle with Sidecar",
'5' => "Non-Conventional MV",
'8' => "Sports Utility Vehicle",
'9' => "Truck",
'10' => "Trailer",
'11' => "UV Private",
'12' => "UV Commercial",
'13' => "Tricycle",
];
}