protected static $_rules = array('name' => 'required|min_length[50]');
$model = new Model_Test; $model->name = 'this value is too short'; $model->validation()->run(); //outputs false, which is OK
$model->validation()->show_errors();
echo $drivingSchool->validation()->show_errors();
\Debug::dump($drivingSchool->validation()->error());
It looks like you're new here. If you want to get involved, click one of these buttons!