@if ($servers->count() > 0)
Choose a server
@endif
@forelse ($servers as $server)
@if ($chosenServer && $chosenServer['id'] === $server->id)
{{ $server->name }}
@else
{{ $server->name }}
@endif
@empty
No servers found.
Did you forget to add a destination on the server?
@endforelse
@isset($chosenServer)
@if ($standalone_docker->count() > 0 || $swarm_docker->count() > 0)
Choose a destination
@foreach ($standalone_docker as $standalone)
@if ($chosenDestination?->uuid == $standalone->uuid)
{{ $standalone->network }}
@else
{{ $standalone->network }}
@endif
@endforeach
@foreach ($swarm_docker as $standalone)
@if ($chosenDestination?->uuid == $standalone->uuid)
{{ $standalone->network }}
@else
{{ $standalone->uuid }}
@endif
@endforeach
@else
No destinations found on this server.
Add
a
destination
@endif
@endisset
@isset($chosenDestination)
Choose a repository
Select a private key
@foreach ($private_keys as $key)
@if ($private_key_id == $key->id)
{{ $key->name }}
@else
{{ $key->name }}
@endif
@endforeach
@endisset