2025-10-08 17:50:19 +00:00
|
|
|
<x-forms.select wire:model.live="selectedTeamId">
|
2024-03-21 13:30:35 +00:00
|
|
|
<option value="default" disabled selected>Switch team</option>
|
|
|
|
|
@foreach (auth()->user()->teams as $team)
|
2024-12-03 13:09:51 +00:00
|
|
|
<option value="{{ $team->id }}">{{ $team->name }}</option>
|
2024-03-21 13:30:35 +00:00
|
|
|
@endforeach
|
|
|
|
|
</x-forms.select>
|