'Employee of the Month', 2 => 'Best Manager', 3 => 'Dedicated Employeer', 4 => 'Hard Working Employee', ]; public function appreciatee() { return $this->belongsTo(Employee::class, 'employee_id')->withDefault(); } public function appreciator() { return $this->belongsTo(Employee::class, 'appreciated_by')->withDefault(); } }