coolify/resources/views/livewire/server/proxy/status.blade.php
Andras Bacsai cbfc490d95 fix
2023-06-15 13:28:16 +02:00

14 lines
456 B
PHP

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