coolify/resources/views/livewire/server/proxy/status.blade.php

10 lines
284 B
PHP
Raw Normal View History

<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 />
2023-06-02 15:15:12 +02:00
@endif
</div>