store-manage/app/Enums/SignTime.php

32 lines
489 B
PHP

<?php
namespace App\Enums;
/**
* 打卡时机(上班打卡/下班打卡)
*/
enum SignTime: int
{
/**
* 上班打卡
*/
case Morning = 1;
/**
* 下班打卡
*/
case Afternoon = 2;
public static function options()
{
return [
self::Morning->value => '上班',
self::Afternoon->value => '下班',
];
}
public function text()
{
return data_get(self::options(), $this->value);
}
}