2023-05-16 12:38:11 +00:00
|
|
|
<div class="pt-4">
|
2023-05-22 20:30:33 +00:00
|
|
|
<h3>Switch Team</h3>
|
2023-05-22 10:00:59 +00:00
|
|
|
@if (auth()->user()->otherTeams()->count() > 0)
|
|
|
|
<div class="flex gap-2">
|
|
|
|
@foreach (auth()->user()->otherTeams() as $team)
|
2023-05-25 12:05:44 +00:00
|
|
|
<x-forms.button isHighlighted wire:key="{{ $team->id }}"
|
2023-05-22 10:00:59 +00:00
|
|
|
wire:click="switch_to('{{ $team->id }}')">
|
2023-05-25 12:05:44 +00:00
|
|
|
{{ $team->name }}</x-forms.button>
|
2023-05-22 10:00:59 +00:00
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
@endif
|
2023-03-24 13:54:17 +00:00
|
|
|
</div>
|