@extends('manager.layout.master') @section('body')
学员详情 账号档案与学习监管数据
| 姓名 | {{$info->name}} | 手机号 | {{$info->mobile}} |
| 所属企业 | {{$info->enterprise ? $info->enterprise->name : '-'}} | 班级 | {{$info->classInfo ? $info->classInfo->name : '-'}} |
| 身份证号 | {{$info->id_card ?: '-'}} | 注册时间 | {{$info->create_time}} |
| 人脸底图 |
@if($info->face_img)
|
实名状态 | @if($info->realname_status == 1) 已认证({{$info->realname_time}}) @else 未认证 @endif |
| 账号状态 | @if($info->status == 2) 禁用 @else 正常 @endif | ||
暂无考试记录
@else| 试卷 | 成绩 | 结果 | 用时(秒) | 时间 |
|---|---|---|---|---|
| {{$ex->exam ? $ex->exam->title : '-'}} | {{$ex->score}} | @if($ex->is_pass == 1) 及格 @else 不及格 @endif | {{$ex->duration ?: '-'}} | {{$ex->create_time}} |
暂无学习记录
@else| 章节 | 进度 | 学习时长(秒) | 状态 |
|---|---|---|---|
| {{$p->chapter ? $p->chapter->title : '-'}} | {{$p->progress}}% | {{$p->duration ?: 0}} | @if($p->status == 2) 已完成 @else 学习中 @endif |