//example from link above $user = ORM::factory('user', 1); $user->name = 'Joe'; $user->values($_POST); if ($user->check()) { $user->save(); } else { $errors = $user->errors(); }
After send POST with wrong data, that not be validate with my $_rules I got an error that says: "User_Model doesnt have errors method", yeah it`s right, and i had not found errors method in Kohana_ORM class, so how i can collect errors in my $errors ?