0
0
Files
Babyclass/resources/views/data/withdraw.blade.php
2020-08-04 10:17:22 +08:00

83 lines
3.0 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@extends('layouts.app')
@section('content')
<section class="padding_btm" >
@include('data.header')
<div class="beer-order-list">
<div class="num_0415">
今日<span class="report_today">{{ date('Y-m-d',time()) }}</span>
</div>
<ul class="num_statistics_list">
<li>
<div class="statistics_list_name text-nowrap">提现额统计</div>
<div class="report_proportion"></div>
<div class="statistics_list_num text-nowrap">
<span>
{{ $today['withdraw']['all'] }}
</span>
</div>
<div class="report_child">
<span>人次 {{ $today['user']['all'] }}</span>
</div>
</li>
<li>
<div class="statistics_list_name text-nowrap">实际转账额</div>
<div class="report_proportion"></div>
<div class="statistics_list_num text-nowrap">
<span>
{{ $today['cash']['all'] }}
</span>
</div>
<div class="report_child">
<span>已转账 {{ $today['cash']['pass'] }}</span>
<span>失败 {{ $today['cash']['no'] }}</span>
</div>
</li>
</ul>
<div class="num_0415">
汇总数据
</div>
<ul class="num_statistics_list">
<li>
<div class="statistics_list_name text-nowrap">提现额统计</div>
<div class="report_proportion"></div>
<div class="statistics_list_num text-nowrap">
<span>
{{ $all['withdraw']['all'] }}
</span>
</div>
<div class="report_child">
<span>人次 {{ $all['user']['all'] }}</span>
</div>
</li>
<li>
<div class="statistics_list_name text-nowrap">实际转账额</div>
<div class="report_proportion"></div>
<div class="statistics_list_num text-nowrap">
<span>
{{ $all['cash']['all'] }}
</span>
</div>
<div class="report_child">
<span>已转账 {{ $all['cash']['pass'] }}</span>
<span>失败 {{ $all['cash']['no'] }}</span>
</div>
</li>
<li>
<div class="statistics_list_name text-nowrap">账户总余额</div>
<div class="report_proportion"></div>
<div class="statistics_list_num text-nowrap">
<span>
{{ $all['account']['all_account'] }}
</span>
</div>
</li>
</ul>
</div>
</section>
@endsection