coolify/resources/views/livewire/server/proxy/status.blade.php
Andras Bacsai 0add4155ab updates
2023-06-08 10:55:50 +02:00

14 lines
429 B
PHP

<div>
@if ($server->settings->is_validated)
<div wire:poll.10000ms="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>