@extends('layouts.base') @section('title', '申请列表') @section('content')
  • 申请列表
{{----}}
总数:{{$list->total()}}
@foreach($list as $row) @endforeach
ID 会员 姓名
手机号
申请身份 申请时间 消费金额 下线人数
一级
下线消费金额 状态 审核
{{$row->id}}
@if ($row->hasOneMember->nickname) {{$row->hasOneMember->nickname}} @else {{$row->hasOneMember->mobile}} @endif
{{$row->realname}}
{{$row->mobile}}
{{$row->apply_name}} {{$row->created_at}} {{$row->status_name}} @if($row->status == 0) 驳回申请
审核通过 @else 已审核 @endif
{!!$pager!!}
@endsection