32 lines
570 B
PHP
32 lines
570 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class QuizQuestions extends Model
|
|
{
|
|
protected $table = "quiz_questions";
|
|
|
|
protected $fillable = [
|
|
"quiz_id",
|
|
"pertanyaan",
|
|
"opsi_a",
|
|
"opsi_b",
|
|
"opsi_c",
|
|
"opsi_d",
|
|
"jawaban_bener",
|
|
"level",
|
|
];
|
|
|
|
public function attemptAnswers()
|
|
{
|
|
return $this->hasMany(QuizAttemptAnswers::class, 'question_id');
|
|
}
|
|
|
|
public function quiz()
|
|
{
|
|
return $this->belongsTo(Quizzes::class, "quiz_id", "id");
|
|
}
|
|
}
|