belongsToMany(User::class, 'team_memberships')->withTimestamps(); } public function managers(): BelongsToMany { return $this->belongsToMany(User::class, 'team_managers')->withTimestamps(); } }