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

17 lines
668 B
PHP
Raw Normal View History

<div x-init="$wire.checkProxy()">
2023-09-24 10:48:54 +02:00
@if ($server->isFunctional())
<div class="flex gap-2">
2023-09-24 10:55:15 +02:00
@if (data_get($server, 'proxy.status') === 'running')
<x-status.running status="Proxy Running" />
@elseif (data_get($server, 'proxy.status') === 'restarting')
<x-status.restarting status="Proxy Restarting" />
2023-09-24 10:48:54 +02:00
@else
2023-09-24 10:55:15 +02:00
<x-status.stopped status="Proxy Stopped" />
2023-09-24 10:48:54 +02:00
@endif
@if (data_get($server, 'proxy.status') === 'running')
<x-forms.button wire:click='checkProxy(true)'>Refresh</x-forms.button>
@endif
2023-09-24 10:48:54 +02:00
</div>
2023-06-02 15:15:12 +02:00
@endif
</div>