@extends('layouts.crm') @section('title')我的学习@endsection @section('header') @endsection @section('navbread') {{-- */ $navbread = [ ['name' => '我的学习', 'href' => '/study/addCertificate'], ['name' => '我的学习', 'href' => '/study/trainList'], ] /* --}} @endsection @section('body')
教职工号 | 姓名 | 部门 | 名称 | 学习类型 | 操作 |
---|---|---|---|---|---|
{{$v['staff_no']}} | {{$v['name']}} | {{ isset($depart[$v['department']]) ? $depart[$v['department']]['og_name'] : '未知' }} | {{$v['study_name']}} | @if ($v['study_type'] === 1) 证书 @elseif ($v['study_type'] === 2) 专题 @else 培训 @endif | 查看 @if(hasPower('study::editStudy')) 修改 @endif @if(hasPower('study::delStudy')) 删除 @endif |