@extends('admin/public/layout') @section('title')专家管理@endsection @section('content')

专家管理 管理系统的所有专家

@foreach($authentications as $authentication) @endforeach
UID 所属分类 真实姓名 城市 职称 身份证号码 认证领域 更新时间 状态 推荐 操作
{{ $authentication->user_id }} @if($authentication->category) {{ $authentication->category->name }} @else 无 @endif {{ $authentication->real_name }} {{ Area()->getName($authentication->province) }} @if($authentication->city>0 && Area()->getName($authentication->province)!=Area()->getName($authentication->city)) - {{ Area()->getName($authentication->city) }} @endif {{ $authentication->title }} {{ $authentication->id_card }} {{ $authentication->skill }} {{ timestamp_format($authentication->updated_at) }} {{ trans_authentication_status($authentication->status) }} {{ trans_common_bool($authentication->recommend_at)}}
@endsection @section('script') @include("admin.public.change_category_modal",['type'=>'experts','form_id'=>'item_form','form_action'=>route('admin.authentication.changeCategories')]) @endsection