*/ use HasFactory; /** * Get the departments for the profile. * * @return HasMany */ public function departments(): HasMany { return $this->hasMany(Department::class); } }