{{-- 文件功能:婚姻参数配置页(所有参数按分组展示,可批量保存) @author ChatRoom Laravel @version 1.0.0 --}} @extends('admin.layouts.app') @section('title', '婚姻参数配置') @section('content')

⚙️ 婚姻参数配置

修改参数后点击「保存」生效,参数变更会自动清除缓存

← 返回总览
@csrf @foreach ($groups as $groupName => $configs)
{{ $groupName }} ({{ $configs->count() }} 项)
@foreach ($configs as $cfg)
{{ $cfg->label }}
@if ($cfg->description)
{{ $cfg->description }}
@endif
{{ $cfg->key }}
@if ($cfg->min !== null) 最小: {{ $cfg->min }} @endif min !== null) min="{{ $cfg->min }}" @endif @if ($cfg->max !== null) max="{{ $cfg->max }}" @endif required class="border rounded-lg px-3 py-1.5 text-sm w-28 text-center font-bold focus:outline-none focus:ring-2 focus:ring-indigo-300"> @if ($cfg->max !== null) 最大: {{ $cfg->max }} @endif
@endforeach
@endforeach
取消
@endsection