@extends('layouts.base') @section('title', '转让记录') @section('content')
筛选
总数:{{ $tansferList->total() }}
@foreach($tansferList as $list) @endforeach
编号 转让人 被转让人 转让金额 转让时间 状态
{{ $list->id }} {{ $list->transferorInfo->realname or $list->transferorInfo->nickname }}({{ $list->transferor }}) {{ $list->recipientInfo->realname or $list->recipientInfo->nickname }}({{ $list->recipient }}) {{ $list->money }} {{ $list->created_at }} @if($list->status == 1) 转让成功 @else 转让失败 @endif
{!! $pager !!}
@endsection