coolify/resources/views/livewire/switch-team.blade.php

13 lines
438 B
PHP
Raw Normal View History

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