Merge branch 'v4-next' into patricio-deploy-proxy

This commit is contained in:
Andras Bacsai
2023-05-03 20:53:51 +02:00
45 changed files with 431 additions and 248 deletions

View File

@@ -0,0 +1,4 @@
<x-layout>
<h1>Select a private Key</h1>
<livewire:server.private-key />
</x-layout>

View File

@@ -1,7 +1,14 @@
<x-layout>
<h1>Server</h1>
<livewire:server.form :server_id="$server->id" />
<h2>Destinations</h2>
<h2>Private Key <a href="{{ route('server.private-key', ['server_uuid' => $server->uuid]) }}">
<x-inputs.button>Change</x-inputs.button>
</a>
</h2>
<p>{{ $server->privateKey->name }}</p>
<h2>Destinations <a href="{{ route('destination.new', ['server_id' => $server->id]) }}">
<x-inputs.button>New</x-inputs.button>
</a></h2>
@if ($server->standaloneDockers)
@foreach ($server->standaloneDockers as $docker)
<p>Network: {{ data_get($docker, 'network') }}</p>