coolify/resources/views/components/status/services.blade.php
2023-09-21 17:48:31 +02:00

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