Aircraft can be added without subfleet/block subfleet deletion if still in use #128

This commit is contained in:
Nabeel Shahzad
2018-01-09 13:34:19 -06:00
parent 0e36849f16
commit cbdce35545
8 changed files with 60 additions and 13 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace App\Models\Enums;
/**
* Class GenericState
* @package App\Models\Enums
*/
class GenericState extends EnumBase
{
const INACTIVE = 0;
const ACTIVE = 1;
public static $labels = [
GenericState::INACTIVE => 'Inactive',
GenericState::ACTIVE => 'Active',
];
}