@extends('admin.public.base') @section('body_class') style="margin: 0 auto;width: 96%;padding: 30px 0px;" @endsection @section('content')
重置
@foreach ($list as $a) @endforeach
活动ID 活动名称 客户编码 客户名称 红包金额 领取状态 领取时间 操作人员 修改时间 操作
{{$a['redpacket_id']}} {{$a['redpacket_name']}} {{$a['custom_code']}} {{$a['custom_name']}} {{$a['money']}} @if ($a['status'] == 0) 待领取 @endif @if ($a['status'] == 1) 已领取 @endif @if ($a['status'] == 2) 暂停 @endif @if ($a['status'] == 3) 过期 @endif @if ($a['status'] == 4) 作废 @endif {{date('Y/m/d H:i:s',$a['start_time'])}} ~ {{date('Y/m/d H:i:s',$a['end_time'])}} {{$a['admin_name']}} {{date('Y/m/d H:i:s',$a['update_time'])}} @if( check_auth('admin/custom_redpacket/set_status') ) @if ( $a['status'] == 4 ) 恢复 @endif @if ( $a['status'] == 0 ) 作废 @endif @endif
{{$list->render()}}
总计 {{$list->total()}} 个记录
@endsection