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

9 lines
314 B
PHP
Raw Normal View History

2023-07-14 11:27:08 +02:00
<div class="w-64">
2023-12-07 22:56:55 +01:00
<x-forms.select wire:model.live="selectedTeamId">
2023-06-02 12:34:45 +02:00
<option value="default" disabled selected>Switch team</option>
@foreach (auth()->user()->teams as $team)
<option value="{{ $team->id }}">{{ $team->name }}</option>
2023-06-01 12:15:33 +02:00
@endforeach
2023-06-02 12:34:45 +02:00
</x-forms.select>
</div>