@extends('layouts.crm') @section('title')用户管理@endsection @section('header') @endsection @section('navbread') {{-- */ $navbread = [ ['name' => '系统设置', 'href' => ''], ['name' => '用户管理', 'href' => ''], ] /* --}} @endsection @section('body') {{--
教职工
学生
{同步后生成教职工、学生以及家长账号密码 }
--}}
{{-- --}} @if(hasPower('system::delUser')) @endif
@if(count($userInfo->all())) @foreach($userInfo as $k=>$v) @endforeach @else @endif
序号 账号 工号/学号 姓名 用户组
@if($v['id'] != 1) @endif {{ $k+1 }} {{ $v['user_name'] }} {{ $v['access_id'] == 1 ? $v['admin_no'] : $v['user_name'] }} {{ $v['access_id'] == 4 ? $v['name'] . '家长' : $v['name'] }} {{ isset($group[$v['access_id']]) ? $group[$v['access_id']] : '' }}
暂无数据
@if(count($userInfo->all()))
{!! $userInfo->links() !!}
@endif
@section('footer') @endsection @endsection