@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['name']}} @if( check_auth('admin/video_learn_question/index') ) 课中习题 @endif @if( check_auth('admin/video_exam_question/index') ) 课后习题 @endif

开始:{{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 {{$a['type_name']}} {{date('Y/m/d H:i',$a['update_time'])}} @if( check_auth('admin/video_course/edit') ) 学习记录 @endif @if( check_auth('admin/video_course/edit') ) 课后评测记录 @endif @if( check_auth('admin/video_course/edit') ) 修改 @endif @if( check_auth('admin/video_course/set_status') ) @if ( $a['status'] ) 启用 @else 停用 @endif @endif
{{$list->render()}}
总计 {{$list->total()}} 个课程
@endsection