['required', 'integer', new Exists(SysCategoryModel::class, 'id')], 'title' => 'required|string|max:100', 'image_id' => ['required', 'integer', new Exists(SysFileModel::class, 'id')], 'link' => 'nullable|string|max:500', 'tag' => 'nullable|array', 'status' => 'nullable|integer|in:0,1', 'sort' => 'nullable|integer', ]; } public function messages(): array { return [ 'category_id.required' => '所属分类是必填的', 'title.required' => '分类项标题是必填的', 'title.max' => '分类项标题不能超过 :max 个字符', 'image_id.required' => '分类项图标是必填的', 'link.max' => '跳转链接不能超过 :max 个字符', 'status.in' => '状态值只能是 0(启用)或 1(禁用)', 'sort.integer' => '排序必须是整数', ]; } }