{{-- 文件功能:风云排行榜页面 展示等级榜、经验榜、财富榜、魅力榜四大排行 @extends layouts.app --}} @extends('layouts.app') @section('title', '风云排行榜 - 飘落流星') @section('nav-icon', '🏆') @section('nav-title', '风云排行榜') @section('content') {{-- 说明条 --}}

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

📊 查看我的积分日志 →
{{-- 滚动内容区 --}}
{{-- 1. 境界榜 (user_level) --}}

👑 无上境界榜

Level
@include('leaderboard.partials.list', [ 'users' => $topLevels, 'valueField' => 'user_level', 'unit' => '级', 'color' => 'text-red-600', ])
{{-- 2. 修为榜 (exp_num) --}}

🔥 苦修经验榜

Exp
@include('leaderboard.partials.list', [ 'users' => $topExp, 'valueField' => 'exp_num', 'unit' => '点', 'color' => 'text-amber-600', ])
{{-- 3. 财富榜 (jjb) --}}

💰 盖世神豪榜

Coin
@include('leaderboard.partials.list', [ 'users' => $topWealth, 'valueField' => 'jjb', 'unit' => '枚', 'color' => 'text-yellow-600', ])
{{-- 4. 魅力榜 (meili) --}}

🌸 绝世名伶榜

Charm
@include('leaderboard.partials.list', [ 'users' => $topCharm, 'valueField' => 'meili', 'unit' => '点', 'color' => 'text-pink-600', ])
{{-- ═══ 今日榜(每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