coolify/resources/views/livewire/project/application/destination.blade.php

9 lines
306 B
PHP
Raw Normal View History

2023-04-19 12:42:15 +02:00
<div>
2023-05-18 13:26:35 +02:00
<h2>Destination</h2>
2023-05-04 10:45:09 +02:00
<p>Server Name: {{ data_get($destination, 'server.name') }}</p>
@if (data_get($destination, 'server.description'))
<p>Description: {{ data_get($destination, 'server.description') }}</p>
@endif
2023-04-19 14:00:31 +02:00
<p>Docker Network: {{ $destination->network }}</p>
2023-04-19 12:42:15 +02:00
</div>