{{-- 文件功能:后台积分活动统计页面 显示指定日期下各来源活动(钓鱼、存点等)产出的经验/金币/魅力统计,以及今日净流通量 @extends admin/layouts --}} @extends('admin.layouts.app') @section('title', '积分流水统计') @section('content')
日期:{{ $date }}(仅统计正向增加,不含消耗)
| 来源活动 | ⚡ 经验产出 | 💰 金币产出 | 🌸 魅力产出 | 参与人次 |
|---|---|---|---|---|
| {{ $source->label() }} | {{ $expRow ? number_format($expRow->total_amount) : '—' }} | {{ $goldRow ? number_format($goldRow->total_amount) : '—' }} | {{ $charmRow ? number_format($charmRow->total_amount) : '—' }} | {{ $maxParticipants > 0 ? $maxParticipants . ' 人' : '—' }} |