control_statistics.blade.php 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. @extends('base.base')
  2. @section('base')
  3. <!-- 内容区域 -->
  4. <style type="text/css">
  5. .table th {
  6. padding: 0.8375rem;
  7. vertical-align: top;
  8. border-top: 1px solid #ebedf2;
  9. }
  10. </style>
  11. <div class="main-panel">
  12. <div class="content-wrapper">
  13. <div class="page-header">
  14. <h3 class="page-title">
  15. <span class="page-title-icon bg-gradient-primary text-white mr-2">
  16. <i class="mdi mdi-settings"></i>
  17. </span>
  18. {{ __('auto.单控综合统计') }}
  19. </h3>
  20. <nav aria-label="breadcrumb">
  21. <ol class="breadcrumb">
  22. <li class="breadcrumb-item"><a href="#">{{ __('auto.用户控制') }}</a></li>
  23. <li class="breadcrumb-item active" aria-current="page">{{ __('auto.单控综合统计') }}</li>
  24. </ol>
  25. </nav>
  26. </div>
  27. <div class="row">
  28. <div class="col-lg-12 grid-margin stretch-card">
  29. <div class="card">
  30. <div class="card-body">
  31. <h4 class="card-title">{{ __('auto.单控综合统计') }}</h4>
  32. <table class="table table-bordered">
  33. <thead>
  34. <tr>
  35. <th>{{ __('auto.玩家区分') }}</th>
  36. <th>{{ __('auto.控制回收总金额') }}</th>
  37. <th>{{ __('auto.触发单控实际回收金额') }}</th>
  38. <th>{{ __('auto.控制吐分总金额') }}</th>
  39. <th>{{ __('auto.触发单控实际给出金额') }}</th>
  40. <th>{{ __('auto.总和') }}</th>
  41. </tr>
  42. <tr>
  43. <td>{{ __('auto.普通玩家') }}</td>
  44. <td>{{$ptAccounts}}</td>
  45. <td>{{$ptLoseAccounts}}</td>
  46. <td>{{-$ptWinAccounts->ControlScore ?? 0}}</td>
  47. <td>{{$ptWinAccounts->EffectiveScore ?? 0}}</td>
  48. <td>{{$ptTotal}}</td>
  49. </tr>
  50. <tr>
  51. <td>{{ __('auto.官方玩家') }}</td>
  52. <td>{{$gfAccounts}}</td>
  53. <td>{{$gfLoseAccounts}}</td>
  54. <td>{{-$gfWinAccounts->ControlScore ?? 0}}</td>
  55. <td>{{$gfWinAccounts->EffectiveScore ?? 0}}</td>
  56. <td>{{$gfTotal}}</td>
  57. </tr>
  58. </thead>
  59. </table>
  60. </div>
  61. </div>
  62. </div>
  63. </div>
  64. </div>
  65. </div>
  66. @endsection