@extends('admin.layouts.app') @section('title', '等级经验阈值管理') @section('content') @php require resource_path('views/admin/partials/list-theme.php'); @endphp @php $formThresholds = collect(old('thresholds', $thresholds->pluck('exp')->all())) ->map(fn ($value) => trim((string) $value)) ->filter(fn (string $value) => $value !== '') ->values(); if ($formThresholds->isEmpty()) { $formThresholds = $thresholds->pluck('exp')->map(fn ($value) => (string) $value)->values(); } @endphp
按列表维护每一级升级所需的累计经验值,并统一管理用户最高可达等级与管理员级别。