mirror of
https://github.com/ershisan99/coolify.git
synced 2025-12-16 20:49:28 +00:00
14 lines
442 B
PHP
14 lines
442 B
PHP
<div class="pt-4">
|
|
@if (auth()->user()->otherTeams()->count() > 0)
|
|
<p>Switch to:</p>
|
|
<div class="flex gap-2">
|
|
@foreach (auth()->user()->otherTeams() as $team)
|
|
<x-inputs.button isHighlighted wire:key="{{ $team->id }}"
|
|
wire:click="switch_to('{{ $team->id }}')">
|
|
{{ $team->name }}</x-inputs.button>
|
|
@endforeach
|
|
</div>
|
|
@endif
|
|
|
|
</div>
|