Destinations | Coolify

Destinations

@if ($servers->count() > 0) @endif
Network endpoints to deploy your resources.
@forelse ($destinations as $destination) @if ($destination->getMorphClass() === 'App\Models\StandaloneDocker')
{{ $destination->name }}
server: {{ $destination->server->name }}
@endif @if ($destination->getMorphClass() === 'App\Models\SwarmDocker')
{{ $destination->name }}
server: {{ $destination->server->name }}
@endif @empty
@if ($servers->count() === 0)
No servers found. Please add one first.
@else
No destinations found.
@endif
@endforelse