phpvms/app/Models/Enums/GenericState.php
2018-02-10 14:06:25 -06:00

19 lines
325 B
PHP

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