boxId); // 箱子不存在或已经被领取/过期,跳过 if (! $box || $box->status !== 'open') { return; } // 标记为过期 $box->update(['status' => 'expired']); // 公屏广播过期通知 $msg = [ 'id' => $chatState->nextMessageId(1), 'room_id' => 1, 'from_user' => '系统传音', 'to_user' => '大家', 'content' => "⏰ 神秘箱子(暗号:{$box->passcode})已超时,箱子消失了!下次要快哦~", 'is_secret' => false, 'font_color' => '#9ca3af', 'action' => '大声宣告', 'sent_at' => now()->toDateTimeString(), ]; $chatState->pushMessage(1, $msg); broadcast(new MessageSent(1, $msg)); SaveMessageJob::dispatch($msg); } }