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