@extends('admin.layouts')
@section('css')
@endsection
@section('content')
返利流水记录
# |
消费者 |
邀请者 |
订单号 |
消费金额 |
返利金额 |
生成时间 |
处理时间 |
状态 |
@foreach($list as $vo)
{{$vo->id}} |
@if(empty($vo->invitee))
【账号已删除】
@else
{{$vo->invitee->email}}
@endif
|
@if(empty($vo->inviter))
【账号已删除】
@else
{{$vo->inviter->email}}
@endif
|
{{$vo->order_id}} |
{{$vo->amount}} |
{{$vo->commission}} |
{{$vo->created_at}} |
{{$vo->updated_at}} |
@if ($vo->status === 1)
申请中
@elseif($vo->status === 2)
已提现
@else
未提现
@endif
|
@endforeach
@endsection
@section('javascript')
@endsection