'date', 'interviewers' => 'array', 'feedback_submitted' => 'boolean', ]; public function candidate() { return $this->belongsTo(Candidate::class); } public function job() { return $this->belongsTo(JobPosting::class); } public function round() { return $this->belongsTo(InterviewRound::class); } public function interviewType() { return $this->belongsTo(InterviewType::class); } public function creator() { return $this->belongsTo(User::class, 'created_by'); } public function feedback() { return $this->hasMany(InterviewFeedback::class); } }