init project

This commit is contained in:
2026-05-25 11:08:52 +07:00
commit 85c4b769cc
417 changed files with 67702 additions and 0 deletions

33
app/Enums/UtilEnum.php Normal file
View File

@@ -0,0 +1,33 @@
<?php
namespace App\Enums;
use BenSampo\Enum\Enum;
/**
* @method static static OptionOne()
* @method static static OptionTwo()
* @method static static OptionThree()
*/
final class UtilEnum extends Enum
{
const ADMINISTRATOR_ROLE = 1;
const ADMINISTRATOR_USER = 1;
const PHYSICIAN_ROLE = 6;
const LBD = 'Days';
const LBM = 'Months';
const LBY = 'Years';
const Y = 'Yes';
const N = 'No';
const FIELD_TYPE_HEADING = 0;
const FIELD_TYPE_NUMERIC = 1;
const FIELD_TYPE_SINGLE = 2;
const FIELD_TYPE_MULTIPLE = 3;
const FIELD_TYPE_CALCULATE = 4;
}