@extends('layouts.base') @section('title', '充值记录') @section('content')
记录总数:{{ $pageList->total() }}
@foreach($pageList as $list) @endforeach
主键ID 充值时间 充值类型 充值数量 失败数量 充值总额 成功总额 操作
{{ $list->id }} {{ $list->created_at }} {{ $list->sourceName }} {{ $list->total }} {{ $list->failure }} {{ $list->amount }} {{ $list->success }} 详细记录
{!! $page !!}
@endsection