Resolve "Add LPG as fuel type" #909
1 changed files with 4 additions and 2 deletions
|
|
@ -4,11 +4,13 @@ namespace App\Ramcar;
|
|||
|
||||
class FuelType extends NameValue
|
||||
{
|
||||
const GAS = 'gas';
|
||||
const DIESEL = 'diesel';
|
||||
const GAS = 'gas';
|
||||
const DIESEL = 'diesel';
|
||||
const LPG = 'lpg';
|
||||
|
||||
const COLLECTION = [
|
||||
'gas' => 'Gas',
|
||||
'diesel' => 'Diesel',
|
||||
'lpg' => 'LPG',
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue