@extends('admin.layouts.app') @section('title', '用户检索与管理') @section('content') @php // 管理员级别 = 最高等级 + 1,后台编辑最高可设到管理员级别 $adminLevel = (int) \App\Models\Sysparam::getValue('maxlevel', '15') + 1; @endphp
| ID | 注册名 | 性别 | 等级 | 经验 | 注册时间 | 管理操作 |
|---|---|---|---|---|---|---|
| {{ $user->id }} |
{{ $user->username }}
@if ($user->isVip())
{{ $user->vipIcon() }}
@endif
|
{{ [0 => '保密', 1 => '男', 2 => '女'][$user->sex] ?? '保密' }} | LV.{{ $user->user_level }} | {{ number_format($user->exp_num ?? 0) }} | {{ $user->created_at->format('Y/m/d H:i') }} |