coolify/resources/views/livewire/server/proxy/status.blade.php
Andras Bacsai 3bdea4c931 wip
2023-06-20 20:19:31 +02:00

14 lines
422 B
PHP

<div>
@if ($server->settings->is_reachable)
<div wire:poll.10000ms="proxyStatus" x-init="$wire.proxyStatus">
@if ($server->proxy->status === 'running')
<x-status.running />
@elseif ($server->proxy->status === 'restarting')
<x-status.restarting />
@else
<x-status.stopped />
@endif
</div>
@endif
</div>