Andras Bacsai b57b4f9bd3 fixes
2023-07-28 21:36:19 +02:00

10 lines
347 B
PHP

<div wire:poll.3000ms="get_status" x-init="$wire.get_status">
@if ($server->proxy->status === 'running')
<x-status.running text="Proxy Running" />
@elseif ($server->proxy->status === 'restarting')
<x-status.restarting text="Proxy Restarting" />
@else
<x-status.stopped text="Proxy Stopped" />
@endif
</div>