2
0

daily.blade.php 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. @extends('base.base')
  2. @section('base')
  3. <div class="main-panel">
  4. <div class="content-wrapper">
  5. <div class="page-header">
  6. <h3 class="page-title">
  7. <span class="page-title-icon bg-gradient-primary text-white mr-2">
  8. <i class="mdi mdi-calendar-multiple"></i>
  9. </span>
  10. Superball 每日数据
  11. </h3>
  12. <nav aria-label="breadcrumb">
  13. <ol class="breadcrumb">
  14. <li class="breadcrumb-item"><a href="#">活动管理</a></li>
  15. <li class="breadcrumb-item active" aria-current="page">Superball 每日数据</li>
  16. </ol>
  17. </nav>
  18. </div>
  19. <div class="row">
  20. <div class="col-lg-12 grid-margin stretch-card">
  21. <div class="card">
  22. <div class="card-body">
  23. <h4 class="card-title">每日数据列表</h4>
  24. <table class="table table-bordered">
  25. <thead>
  26. <tr>
  27. <th>日期</th>
  28. <th>奖池(展示)</th>
  29. <th>总球数(展示)</th>
  30. <th>完成人数(展示)</th>
  31. <th>幸运号码</th>
  32. <th>每个球的奖励(展示)</th>
  33. <th>真实完成人数</th>
  34. <th>真实球数</th>
  35. <th>用户中奖球总数</th>
  36. <th>幸运奖励合计(展示)</th>
  37. <th>更新时间</th>
  38. </tr>
  39. </thead>
  40. <tbody>
  41. @foreach($list as $v)
  42. <tr>
  43. <td>{{ $v->pool_date }}</td>
  44. <td>{{ $v->pool_amount_display ?? number_float($v->pool_amount / 100) }}</td>
  45. <td>{{ $v->total_balls }}</td>
  46. <td>{{ $v->completed_count }}</td>
  47. <td>{{ $v->lucky_number }}</td>
  48. <td>{{ $v->base_reward_per_ball_display ?? '0.00' }}</td>
  49. <td>{{ $v->real_user_completed_count ?? 0 }}</td>
  50. <td>{{ $v->real_total_balls ?? 0 }}</td>
  51. <td>{{ $v->winning_balls_count ?? 0 }}</td>
  52. <td>{{ $v->total_lucky_reward_display ?? '0.00' }}</td>
  53. <td>{{ $v->updated_at }}</td>
  54. </tr>
  55. @endforeach
  56. </tbody>
  57. </table>
  58. <div class="box-footer clearfix">
  59. 共 <b>{{ $list->total() }}</b> 条,共 <b>{{ $list->lastPage() }}</b> 页
  60. {!! $list->links() !!}
  61. </div>
  62. </div>
  63. </div>
  64. </div>
  65. </div>
  66. </div>
  67. </div>
  68. @endsection