I've these tables
estudiantes
id_estudiante pk nombre_estudiante
evaluaciones
id_evaluacion pk evaluacion_estudiante evaluacion_asignatura
asignaturas
id_asignatura pk nombre_asignatura
in evaluaciones model relations
return array(
'estudiantes'=>array(self::BELONGS_TO, 'Estudiantes', 'evaluacion_estudiante'),
);
evaluaciones's _view file i have this
<?php echo CHtml::encode($data->estudiantes->nombre_estudiante); ?>
and there is an error on that line, it seems to be a problem with relations.. but i cant solve it.
Trying to get property of non-object