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

15 lines
588 B
PHP
Raw Normal View History

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