mirror of
https://github.com/ershisan99/coolify.git
synced 2026-01-04 20:52:05 +00:00
10 lines
232 B
PHP
10 lines
232 B
PHP
@if ($complexStatus === 'running')
|
|
<x-status.running />
|
|
@elseif($complexStatus === 'restarting')
|
|
<x-status.restarting />
|
|
@elseif($complexStatus === 'degraded')
|
|
<x-status.degraded />
|
|
@else
|
|
<x-status.stopped />
|
|
@endif
|