@extends('layouts.crm')
@section('title')基本信息管理@endsection
@section('header')
@endsection
@section('navbread')
{{-- */ $navbread = [
['name' => '教职工信息', 'href' => ''],
['name' => '基本信息管理', 'href' => ''],
] /* --}}
@endsection
@section('body')
教职工号 |
姓名 |
性别 |
身份证号 |
在职情况 |
联系方式 |
教授学科 |
部门 |
操作 |
@if(count($workerList->all()))
@foreach($workerList as $k=>$v)
{{ $v['staff_no'] }} |
{{ $v['name'] }} |
{{ $v['sex'] == 1 ? '男' : '女' }} |
{{ $v['card'] }} |
{{ configInfo('teacher_situation', $v['teacher_situation']) }} |
{{ !empty($v['mobile']) ? $v['mobile'] : '' }} |
{{ isset($subject[$v['teacher_object']]) ? $subject[$v['teacher_object']] : '空' }} |
{{ isset($depart[$v['department']]) ? $depart[$v['department']]['og_name'] : '未知' }} |
|
@endforeach
@else
暂无数据 |
@endif
@if(count($workerList->all()))
{!! $workerList->links() !!}
@endif
@section('footer')
@endsection
@endsection