@extends( 'newBase' ) @section('title', 'index') @section('content')
个人信息
姓名:{{$user->userName}}
电话:{{$user->phone}}
email:{{$user->email}}
@if(isset($flag) ? $flag : 0)
专业类别:{{$user->nameChinese}}
学校名称:{{$user->uniNameChinese}}{{$user->uniName}}
专业名称:{{$user->courseNameChinese}}{{$user->courseName}}
@endif
{{ csrf_field() }}
    @if(!empty($notList) && is_array($notList)) @foreach($notList as $v) @if($v['wroteBy'] != $currentUser) @continue @endif
  • 前端显示 {{$v['updatedAt']}}

    {{$v['note']}}

    操作人: {{$v['userName']}}
  • @endforeach @endif
@if(!empty($notList) && is_array($notList)) @foreach($notList as $v) @if($v['wroteBy'] == $currentUser) @continue @endif @endforeach @endif
更新时间 状态 标签 创建人
{{$v['updatedAt']}} {{($v['tableShow'] == 1) ? 'ON' : 'OFF'}} {{$v['note']}} {{$v['userName']}}
@endsection