belongsTo(User::class, 'created_by'); } /** * Get the employee goals for this goal type. */ public function goals() { return $this->hasMany(EmployeeGoal::class, 'goal_type_id'); } }