@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) @else 未采集 @endif 实名状态 @if($info->realname_status == 1) 已认证({{$info->realname_time}}) @else 未认证 @endif
账号状态 @if($info->status == 2) 禁用 @else 正常 @endif
学习监管统计
{{number_format($info->total_duration/3600, 1)}} 小时
总学时
{{$info->sign_count}} 次
签到(异常 {{$info->sign_abnormal}})
{{$info->capture_abnormal}} 次
抓拍异常
{{$info->last_heartbeat ?: '无'}}
最近心跳
考试记录
@if($exams->isEmpty())

暂无考试记录

@else @foreach($exams as $ex) @endforeach
试卷 成绩 结果 用时(秒) 时间
{{$ex->exam ? $ex->exam->title : '-'}} {{$ex->score}} @if($ex->is_pass == 1) 及格 @else 不及格 @endif {{$ex->duration ?: '-'}} {{$ex->create_time}}
@endif
学习进度
@if($progress->isEmpty())

暂无学习记录

@else @foreach($progress as $p) @endforeach
章节 进度 学习时长(秒) 状态
{{$p->chapter ? $p->chapter->title : '-'}} {{$p->progress}}% {{$p->duration ?: 0}} @if($p->status == 2) 已完成 @else 学习中 @endif
@endif
@stop