尝试在 kohana 中集成验证时出现错误。以下是错误详情
错误信息标题
ErrorException [ Fatal Error ]: Class 'Validate' not found
APPPATH\classes\Controller\home.php [ 24 ]
19 {
20 $_model = Model::factory('home');
21
22 if ($this->request->method() == HTTP_Request::POST)
23 {
24 $post = Validate::factory($_POST)
25 ->filter(TRUE, 'trim')
26 ->filter('txt_name', 'strtolower')
27
28 ->rule('txt_name', 'not_empty')
29 ->rule('txt_name', 'regex', array('/^[a-z_.]++$/iD'))
请帮我解决这个问题。