@extends('layouts.base') @section('content')
@include('layouts.tabs') @if(app('plugins')->isEnabled('store-cashier'))

1.按照供应商/门店/收银台完成订单金额进行排序;

2.未提现收入:供应商/门店/收银台可提现金额

3.提现中收入:处于待审核、待打款、打款中的提现记录

4.已打款收入:已成功提现打款到账的收入

{!!app\common\helpers\DateRange::tplFormFieldDateRange('search[time]', [ 'starttime'=>$search['time']['start'] ?: date('Y-m-d H:i:s'), 'endtime'=>$search['time']['end'] ?: date('Y-m-d H:i:s'), 'start'=>0, 'end'=>0 ])!!}
门店数量: {{ $storeTotal }}个   未提现收入: {{ $unWithdrawTotal }}元   提现中收入: {{ $withdrawingTotal }}元   已提现收入: {{ $withdrawTotal }}元
@foreach($list as $key => $item) @endforeach
排行 门店 交易完成总额 未提现收入 提现中收入 已提现收入
@if($key <= 2) @else @endif @if(!empty($item['thumb_url']))
@endif @if(empty($item['name'])) 未更新 @else {{ $item['name'] }} @endif
{{ $item['price'] ?: '0.00' }} {{ $item['un_withdraw'] ?: '0.00' }} {{ $item['withdrawing'] ?: '0.00' }} {{ $item['withdraw'] ?: '0.00' }}
{{--{!! $page !!}--}}
@else 未开启门店插件 @endif
@endsection