新增赠送金币功能:任意用户可从自己余额赠送金币给他人,成功后聊天室系统传音广播;职务奖励金币移入管理区,删除管理区私信按钮

This commit is contained in:
2026-03-18 20:12:17 +08:00
parent c7063e02c2
commit 0ca028f73d
5 changed files with 137 additions and 9 deletions
+1
View File
@@ -270,6 +270,7 @@ Route::middleware(['chat.auth'])->group(function () {
// ---- 送花/礼物互动 ----
Route::post('/gift/flower', [ChatController::class, 'sendFlower'])->name('gift.flower');
Route::post('/gift/gold', [ChatController::class, 'giftGold'])->name('gift.gold');
// ---- 管理员命令(聊天室内实时操作)----
Route::post('/command/warn', [AdminCommandController::class, 'warn'])->name('command.warn');