2023-07-28 19:36:19 +00:00
|
|
|
<div wire:poll.3000ms="get_status" x-init="$wire.get_status">
|
2023-07-14 11:01:55 +00:00
|
|
|
@if ($server->proxy->status === 'running')
|
2023-08-08 09:51:36 +00:00
|
|
|
<x-status.running text="Proxy Running"/>
|
2023-07-14 11:01:55 +00:00
|
|
|
@elseif ($server->proxy->status === 'restarting')
|
2023-08-08 09:51:36 +00:00
|
|
|
<x-status.restarting text="Proxy Restarting"/>
|
2023-07-14 11:01:55 +00:00
|
|
|
@else
|
2023-08-08 09:51:36 +00:00
|
|
|
<x-status.stopped text="Proxy Stopped"/>
|
2023-06-02 13:15:12 +00:00
|
|
|
@endif
|
|
|
|
</div>
|