add destinations

This commit is contained in:
Andras Bacsai
2023-05-02 12:47:52 +02:00
parent 77c86400c0
commit 1a9f360132
16 changed files with 144 additions and 11 deletions

View File

@@ -1,4 +1,10 @@
<x-layout>
<h1>Server</h1>
<livewire:server.form :server_id="$server_id" />
<livewire:server.form :server_id="$server->id" />
<h2>Destinations</h2>
@if ($server->standaloneDockers)
@foreach ($server->standaloneDockers as $docker)
<p>Network: {{ data_get($docker, 'network') }}</p>
@endforeach
@endif
</x-layout>