Đóng gói cuối tuần

This commit is contained in:
2026-04-18 04:46:01 +00:00
parent 761b34916b
commit 3cef1c40df
37 changed files with 1266 additions and 301 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace App\Enums;
enum NavigationGroup: string
{
case PROJECT = 'Quản lý Dự án';
case WAREHOUSE = 'Quản lý Kho';
case CUSTOMER = 'Quản lý Khách hàng';
case TRANSACTION = 'Quản lý Giao dịch';
case FINANCE = 'Quản lý Dòng tiền';
case SETTING = 'Cấu hình Hệ thống';
public function getLabel(): string
{
return $this->value;
}
}