Add warranty class name value collection

This commit is contained in:
Ramon Gutierrez 2018-02-01 00:45:41 +08:00
parent 0654895dab
commit 87ebf9f19b

View file

@ -0,0 +1,14 @@
<?php
namespace App\Ramcar;
class WarrantyClass extends NameValue
{
const WTY_PRIVATE = 'private';
const WTY_COMMERCIAL = 'commercial';
const COLLECTION = [
'private' => 'Private',
'commercial' => 'Commercial',
];
}