'nullable|integer', 'username' => 'nullable|max:50', 'password' => 'nullable|min:6|max:50', 'category_id' => 'nullable|integer', 'name' => 'required|max:50', 'logo' => 'nullable|max:255', 'banner' => 'nullable|max:255', 'description' => 'nullable', 'contact_name' => 'nullable|max:30', 'contact_mobile' => 'nullable|max:20', 'province' => 'nullable|max:30', 'city' => 'nullable|max:30', 'district' => 'nullable|max:30', 'address' => 'nullable|max:255', 'latitude' => 'nullable|max:20', 'longitude' => 'nullable|max:20', 'business_hours' => 'nullable|max:100', 'min_price' => 'nullable|numeric', 'status' => 'nullable|integer|in:0,1,2,3', 'reject_reason' => 'nullable|max:255', ]; // 新建时用户名和密码必填 if (! $this->isUpdate()) { $rules['username'] = 'required|max:50'; $rules['password'] = 'required|min:6|max:50'; } return $rules; } public function messages(): array { return [ 'name.required' => '店铺名称不能为空', 'username.required' => '登录用户名不能为空', 'password.required' => '登录密码不能为空', 'password.min' => '登录密码不能少于6位', ]; } }