@extends('layouts.base') @section('title', '数据列表') @section('content')
活动数据列表: 数量:{{$statistics['count']}} 未转发:{{$statistics['not_forward']}} 未通过:{{$statistics['not_pass']}} 成功:{{$statistics['pass']}} 累计群聊人数:{{$statistics['group_num']}}人 *识别的信息不能有特殊字符、表情等信息
@foreach($list['data'] as $row) @endforeach
ID 参与时间 会员 状态 群聊人数 奖励类型 奖励信息 操作
{{$row['id']}} {{$row['created_at']}} @if(!empty($row['avatar']))
@endif @if(empty($row['nickname'])) 未更新 @else {{$row['nickname']}} @endif
{{$row['status_name']}} {{$row['group_num']}} {{$row['award_type']}} {{$row['reward_information']}}
@if($row['status']>'1') 查看截图 @endif @if($row['status']=='2') 确认通过 @endif 发送消息
{!!$pager!!}
@endsection