@extends('admin.layouts') @section('css') @endsection @section('content')

余额变动记录

重 置
@foreach($list as $vo) @endforeach
# 用户名 订单ID 操作前余额 发生金额 操作后金额 描述 发生时间
{{$vo->id}} @if(empty($vo->user)) 【账号已删除】 @else {{$vo->user->email}} @endif {{$vo->order_id}} {{$vo->before}} {{$vo->amount}} {{$vo->after}} {{$vo->description}} {{$vo->created_at}}
@endsection @section('script') @endsection