@extends('admin.public.base') @section('body_class') style="margin: 0 auto;width: 96%;padding: 30px 0px;" @endsection @section('content')
重置 @csrf
@foreach ($list as $a) @endforeach
ID 客户编码 客户昵称 会员手机 会员效期 会员状态 修改时间 操作
{{$a['id']}} {{$a['custom_code']}} {{$a['custom_name']}} {{$a['custom_phone']}} {{date('Y/m/d H:i',$a['start_time'])}} ~ {{date('Y/m/d H:i',$a['end_time'])}} @if ($a['status'] == 0) 启用 @endif @if ($a['status'] == 1) 停用 @endif {{date('Y/m/d H:i',$a['update_time'])}} @if( check_auth('admin/video_vip/edit') ) 修改 @endif @if( check_auth('admin/video_vip/set_status') ) @if ( $a['status'] ) 启用 @else 停用 @endif @endif
{{$list->render()}}
总计 {{$list->total()}} 个类型
@endsection