@extends('admin/public/layout') @section('title') 用户管理 @endsection @section('content')

用户列表 显示当前系统的所有注册用户

{{-- --}} {{-- --}}
{{--
--}} {{-- --}} {{--
--}}
{{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} @foreach($users as $user) @if($user->id ===1 || $user->id == \Illuminate\Support\Facades\Auth::user()->id) @else @endif {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} @endforeach
用户ID 姓名手机用户名身份职业地区注册ip 更新时间状态操作
{{ $user->id }} {{ $user->name }}{{ $user->mobile }}{{ $user->email }}{{ $user->title }}{{ Area()->getName($user->province) }} @if($user->city>0 && Area()->getName($user->province)!=Area()->getName($user->city)) - {{ Area()->getName($user->city) }} @endif@if($user->userData){{ $user->userData->last_login_ip }}@endif {{ $user->updated_at }}{{ trans_common_status($user->status) }} --}} {{--
--}} {{-- --}} {{--
--}} {{--
@endsection @section('script') @endsection