'required|string|max_length[255]', 'due_date' => 'required|valid_date', 'class_id' => 'required|integer', 'teacher_id' => 'required|integer', ]; protected $validationMessages = []; protected $skipValidation = false; protected $cleanValidationRules = true; protected $allowCallbacks = true; protected $beforeInsert = []; protected $afterInsert = []; protected $beforeUpdate = []; protected $afterUpdate = []; protected $beforeFind = []; protected $afterFind = []; protected $beforeDelete = []; protected $afterDelete = []; }