2024-03-21 13:30:35 +00:00
|
|
|
<x-forms.select wire:model.live="selectedTeamId" label="Current Team">
|
|
|
|
<option value="default" disabled selected>Switch team</option>
|
|
|
|
@foreach (auth()->user()->teams as $team)
|
2024-03-22 15:52:20 +00:00
|
|
|
<option value="{{ $team->id }}">{{ $team->name }}</option>
|
2024-03-21 13:30:35 +00:00
|
|
|
@endforeach
|
|
|
|
</x-forms.select>
|