Files
sccs_laravel/resources/views/vendor/jetstream/components/switchable-team.blade.php
2025-11-04 16:23:40 +05:00

24 lines
881 B
PHP

@props(['team', 'component' => 'jet-dropdown-link'])
<x-dynamic-component :component="$component" href="#"
onclick="event.preventDefault(); document.getElementById('switch-team-form-{{ $team->id }}').submit();">
<div class="d-flex align-content-center">
@if (Auth::user()->isCurrentTeam($team))
<svg class="me-50 text-success" width="20" fill="none" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" stroke="currentColor" viewBox="0 0 24 24">
<path d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
@endif
<div>{{ $team->name }}</div>
</div>
<form method="POST" action="{{ route('current-team.update') }}" id="switch-team-form-{{ $team->id }}">
@method('PUT')
@csrf
<!-- Hidden Team ID -->
<input type="hidden" name="team_id" value="{{ $team->id }}">
</form>
</x-dynamic-component>