'required|string|max:100', 'contact' => 'nullable|string|max:50', 'phone' => 'nullable|string|max:20', 'address' => 'nullable|string|max:255', 'main_products' => 'nullable|string|max:255', 'status' => 'nullable|integer|in:0,1', 'remark' => 'nullable|string|max:255', ]; } public function messages(): array { return [ 'name.required' => '供应商名称不能为空', 'name.max' => '供应商名称最长 100 个字符', 'status.in' => '状态值不正确', ]; } }