get_username() support in laravel

This commit is contained in:
xiaomlove
2022-06-12 15:15:09 +08:00
parent 4fc91f52cc
commit 43156f7fc5
8 changed files with 108 additions and 24 deletions
+9
View File
@@ -16,4 +16,13 @@ return [
'invites' => '邀請',
'attendance_card' => '補簽卡',
],
'class_name' => [
\App\Models\User::CLASS_VIP => '貴賓',
\App\Models\User::CLASS_RETIREE => '養老族',
\App\Models\User::CLASS_UPLOADER => '發布員',
\App\Models\User::CLASS_MODERATOR => '總版主',
\App\Models\User::CLASS_ADMINISTRATOR => '管理員',
\App\Models\User::CLASS_SYSOP => '維護開發員',
\App\Models\User::CLASS_STAFF_LEADER => '主管',
],
];