@extends('manager.layout.master') @section('body') @php $totalCount = 0; $pendingCount = 0; $paidCount = 0; foreach ($list as $o) { $totalCount++; if ($o->status == 20) { $paidCount++; } else { $pendingCount++; } } @endphp
VIP购买记录 {{$totalCount}} 待支付 {{$pendingCount}} 已支付 {{$paidCount}}
刷新
@foreach($list as $key=>$vo) @endforeach
订单号 用户信息 VIP信息 金额 时间 状态
{{\Illuminate\Support\Str::limit($vo->number, 18, '')}}
购买 {{$vo->buyVip->day ?? '0'}} 截止:{{$vo->buyVip->end_time ?? '-'}}
¥{{$vo->price ?? '0.00'}}
创建:{{$vo->create_time ?: '-'}} 支付:{{$vo->pay_time ?: '-'}}
@if($vo->status == 20) 已支付 @else 待支付 @endif
@include('manager.include.pageBtn') @stop