2023-05-16 12:38:11 +00:00
|
|
|
<div class="pt-4">
|
|
|
|
<h3>Other Teams</h3>
|
|
|
|
<div class="flex flex-col gap-2">
|
|
|
|
@foreach (auth()->user()->otherTeams() as $team)
|
|
|
|
<x-inputs.button isBold wire:key="{{ $team->id }}" wire:click="switch_to('{{ $team->id }}')">Switch
|
|
|
|
to:
|
|
|
|
{{ $team->name }}</x-inputs.button>
|
|
|
|
@endforeach
|
|
|
|
</div>
|
2023-03-24 13:54:17 +00:00
|
|
|
</div>
|