'array', 'confidence' => 'decimal:2', 'is_verified' => 'boolean', 'verified_at' => 'datetime', ]; public function project() { return $this->belongsTo(InterviewProject::class, 'interview_project_id'); } public function verifier() { return $this->belongsTo(User::class, 'verified_by'); } public function creator() { return $this->belongsTo(User::class, 'created_by'); } }