coolify/resources/views/livewire/switch-team.blade.php
2024-03-22 16:52:20 +01:00

7 lines
286 B
PHP

<x-forms.select wire:model.live="selectedTeamId" label="Current Team">
<option value="default" disabled selected>Switch team</option>
@foreach (auth()->user()->teams as $team)
<option value="{{ $team->id }}">{{ $team->name }}</option>
@endforeach
</x-forms.select>