'array', 'is_correct' => 'boolean', 'marks_obtained' => 'decimal:2', ]; public function exam_attempt(): BelongsTo { return $this->belongsTo(ExamAttempt::class); } public function exam_question(): BelongsTo { return $this->belongsTo(ExamQuestion::class); } }