'boolean', 'show_correct_answers' => 'boolean', 'is_active' => 'boolean', ]; public function course(): BelongsTo { return $this->belongsTo(Course::class); } public function module(): BelongsTo { return $this->belongsTo(CourseModule::class); } public function questions(): HasMany { return $this->hasMany(Question::class); } public function attempts(): HasMany { return $this->hasMany(TestAttempt::class); } }