From 1eb58ea331b7d50009a453a596f85a544493d2c7 Mon Sep 17 00:00:00 2001 From: lkddi Date: Sat, 28 Feb 2026 12:50:15 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8A=9F=E8=83=BD=EF=BC=9A=E6=8E=92=E8=A1=8C?= =?UTF-8?q?=E6=A6=9C=E9=A1=B5=E9=9D=A2=E6=96=B0=E5=A2=9E=E4=BB=8A=E6=97=A5?= =?UTF-8?q?=E4=B8=89=E6=A6=9C=EF=BC=88=E4=BB=8A=E6=97=A5=E7=BB=8F=E9=AA=8C?= =?UTF-8?q?/=E9=87=91=E5=B8=81/=E9=AD=85=E5=8A=9B=EF=BC=89=E5=8F=8A?= =?UTF-8?q?=E4=B8=AA=E4=BA=BA=E6=97=A5=E5=BF=97=E5=85=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/views/leaderboard/index.blade.php | 84 ++++++++++++++++++++- 1 file changed, 82 insertions(+), 2 deletions(-) diff --git a/resources/views/leaderboard/index.blade.php b/resources/views/leaderboard/index.blade.php index 8b5bf51..4c3324d 100644 --- a/resources/views/leaderboard/index.blade.php +++ b/resources/views/leaderboard/index.blade.php @@ -19,8 +19,10 @@ {{-- 说明条 --}}
-

✨ 数据每 15分钟 - 自动刷新一次。努力提升自己,让全服铭记你的名字!

+

✨ 累计榜每 15分钟 + 刷新,今日榜每 5分钟 刷新。努力提升自己,让全服铭记你的名字!

+ 📊 + 查看我的积分日志 →
@@ -105,5 +107,83 @@ + + {{-- ═══ 今日榜(每5分钟更新,来自流水记录表)═══ --}} +

+ 📅 今日排行榜 + (今日获得量排名,5分钟更新) +

+ +
+ + {{-- 今日经验榜 --}} +
+
+

⚡ 今日修为榜

+ 今日Exp +
+
+ @if ($todayExp->isEmpty()) +

今日暂无记录

+ @else + @foreach ($todayExp as $i => $row) +
+ {{ $i + 1 }} + {{ $row->username }} + +{{ number_format($row->total) }} +
+ @endforeach + @endif +
+
+ + {{-- 今日金币榜 --}} +
+
+

💰 今日财富榜

+ 今日Coin +
+
+ @if ($todayGold->isEmpty()) +

今日暂无记录

+ @else + @foreach ($todayGold as $i => $row) +
+ {{ $i + 1 }} + {{ $row->username }} + +{{ number_format($row->total) }} +
+ @endforeach + @endif +
+
+ + {{-- 今日魅力榜 --}} +
+
+

🌸 今日魅力榜

+ 今日Charm +
+
+ @if ($todayCharm->isEmpty()) +

今日暂无记录

+ @else + @foreach ($todayCharm as $i => $row) +
+ {{ $i + 1 }} + {{ $row->username }} + +{{ number_format($row->total) }} +
+ @endforeach + @endif +
+
+ +
+ + @endsection