mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
7 lines
243 B
PHP
7 lines
243 B
PHP
@if (Str::of($status)->startsWith('running'))
|
|
<x-status.running :status="$status" />
|
|
@elseif(Str::of($status)->startsWith('restarting'))
|
|
<x-status.restarting :status="$status" />
|
|
@else
|
|
<x-status.stopped :status="$status" />
|
|
@endif
|