belongsTo(User::class, 'employee_id'); } /** * Get the award type of this award. */ public function awardType() { return $this->belongsTo(AwardType::class); } /** * Get the user who created this award. */ public function creator() { return $this->belongsTo(User::class, 'created_by'); } }