initial: bootstrap from BukidBountyApp base

This commit is contained in:
Jonathan Sykes
2026-06-06 18:43:00 +08:00
commit eb4a5731fb
5674 changed files with 160857 additions and 0 deletions

26
app/Enums/UserTypes.php Normal file
View File

@@ -0,0 +1,26 @@
<?php
namespace App\Enums;
enum UserTypes: string
{
case ULTIMATE = 'ult';
case SUPER_OPERATOR = 'super operator';
case OPERATOR = 'operator';
case COORDINATOR = 'coordinator';
case COOP_OFFICER = 'coop officer';
case COOP_MEMBER = 'coop member';
case SUPPLIER_OVERSEER = 'supplier overseer';
case WHOLESALE_BUYER = 'wholesale buyer';
case SUPPLIER = 'supplier';
case STORE_OWNER = 'store owner';
case STORE_MANAGER = 'store manager';
case USER = 'user';
case RIDER = 'rider';
case AUDIT = 'audit';
case POS_TERMINAL = 'pos terminal';
case ANY_USER = 'default';
case PUBLIC = 'public';
}