/home/techb158/ileadtechnology.com/app
Edit: /home/techb158/ileadtechnology.com/app/Quiz.php (855B)
getTranslatableAttributes() as $name) {
$attributes[$name] = $this->getTranslation($name, app()->getLocale());
}
return $attributes;
}
protected $table = 'quiz_questions';
protected $fillable = ['course_id', 'topic_id', 'question', 'a', 'b', 'c', 'd', 'answer', 'question_video_link', 'question_img'];
public function quizanswers()
{
return $this->hasMany('App\QuizAnswer','question_id');
}
}