13 lines
514 B
PHP
13 lines
514 B
PHP
<div x-init="$wire.checkProxy()" class="flex gap-2">
|
|
@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" />
|
|
@else
|
|
<x-status.stopped status="Proxy Stopped" />
|
|
@endif
|
|
@if (data_get($server, 'proxy.status') === 'running')
|
|
<x-forms.button wire:click='checkProxy(true)'>Refresh</x-forms.button>
|
|
@endif
|
|
</div>
|