* @Date : 2020/11/6 9:56 上午 * @param string $attribute * @param mixed $value * @return bool */ public function passes($attribute, $value): bool { $city = Region::find($value); if ($city->depth != 2) { return false; } return true; } /** * 获取校验错误信息 * @return string */ public function message(): string { return '市区信息选择有误'; } }