2023-09-24 10:48:54 +02:00
|
|
|
<div>
|
|
|
|
@if ($server->isFunctional())
|
|
|
|
<div class="flex gap-2" x-init="$wire.getProxyStatus">
|
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
|
2023-09-26 14:45:52 +02:00
|
|
|
<x-forms.button wire:click='getProxyStatusWithNoti'>Refresh </x-forms.button>
|
2023-09-24 10:48:54 +02:00
|
|
|
</div>
|
2023-06-02 15:15:12 +02:00
|
|
|
@endif
|
|
|
|
</div>
|