/
@if (app()->environment('local'))
Developer tools
@endif
@if ($isSelectingResource)
@if ($selectedServerId === null)
Select server
@if ($this->selectedResourceName)
for {{ $this->selectedResourceName }}
@endif
@if ($loadingServers)
Loading servers…
@elseif (count($availableServers) > 0) @foreach ($availableServers as $server) @endforeach @else
No servers available
@endif
@endif @if ($selectedServerId !== null && $selectedDestinationUuid === null)
Select destination
@if ($this->selectedResourceName)
for {{ $this->selectedResourceName }}
@endif
@if ($loadingDestinations)
Loading destinations…
@elseif (count($availableDestinations) > 0) @foreach ($availableDestinations as $destination) @endforeach @else
No destinations available
@endif
@endif @if ($selectedDestinationUuid !== null && $selectedProjectUuid === null)
Select project
@if ($this->selectedResourceName)
for {{ $this->selectedResourceName }}
@endif
@if ($loadingProjects)
Loading projects…
@elseif (count($availableProjects) > 0) @foreach ($availableProjects as $project) @endforeach @else
No projects available
@endif
@endif @if ($selectedProjectUuid !== null && $selectedEnvironmentUuid === null)
Select environment
@if ($this->selectedResourceName)
for {{ $this->selectedResourceName }}
@endif
@if ($loadingEnvironments)
Loading environments…
@elseif (count($availableEnvironments) > 0) @foreach ($availableEnvironments as $environment) @endforeach @else
No environments available
@endif
@endif
@endif
{{-- Create resource modals: always mounted with stable Livewire keys so Alpine teleport can open them. Do not loop @livewire() — Livewire ignores a third positional key arg and collides component ids. --}} @php $createModalShell = 'application-settings-form application-settings-section relative max-h-[calc(100dvh-2rem)] w-full lg:w-auto lg:min-w-2xl lg:max-w-4xl'; $createModalClose = 'flex size-7 shrink-0 cursor-pointer items-center justify-center rounded-md text-neutral-500 outline-0 transition-colors hover:bg-neutral-100 hover:text-black focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-accent dark:text-fg-faint dark:hover:bg-white/[0.06] dark:hover:text-fg'; @endphp