Mpociot\Teamwork\Traits\UserHasTeams::detachTeams PHP Method

detachTeams() public method

Detach multiple teams from a user
public detachTeams ( mixed $teams )
$teams mixed
    public function detachTeams($teams)
    {
        foreach ($teams as $team) {
            $this->detachTeam($team);
        }
        return $this;
    }