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