Skip to content

Commit

Permalink
Review mail
Browse files Browse the repository at this point in the history
  • Loading branch information
Akshiteshnaithani committed Jul 8, 2023
1 parent 2ea0337 commit 14cc68b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Modules/HR/Entities/Employee.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,16 +119,16 @@ public function getOverallStatusAttribute()

public function getHRAttribute()
{
return Employee::find($this->hr_id);
return Self::find($this->hr_id);
}

public function getMentorAttribute()
{
return Employee::find($this->mentor_id);
return Self::find($this->mentor_id);
}

public function getManagerAttribute()
{
return Employee::find($this->manager_id);
return Self::find($this->manager_id);
}
}

0 comments on commit 14cc68b

Please sign in to comment.