/home/techb158/ileadtechnology.com/app
Edit: /home/techb158/ileadtechnology.com/app/QuizTopic.php (961B)
getTranslatableAttributes() as $name) {
$attributes[$name] = $this->getTranslation($name, app()->getLocale());
}
return $attributes;
}
protected $table = 'quiz_topics';
protected $fillable = ['course_id', 'title', 'description', 'per_q_mark', 'timer', 'status', 'quiz_again', 'due_days'];
public function quizquestion()
{
return $this->hasMany('App\Quiz','topic_id');
}
public function courses()
{
return $this->belongsTo('App\Course','course_id','id');
}
}