mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-22 19:22:19 +00:00
16 lines
473 B
PHP
16 lines
473 B
PHP
@if ($status == \App\Enums\ServerStatus::READY)
|
|
<x-status status="success">{{ $status }}</x-status>
|
|
@endif
|
|
|
|
@if ($status == \App\Enums\ServerStatus::INSTALLING)
|
|
<x-status status="warning">{{ $status }}</x-status>
|
|
@endif
|
|
|
|
@if ($status == \App\Enums\ServerStatus::DISCONNECTED)
|
|
<x-status status="disabled">{{ $status }}</x-status>
|
|
@endif
|
|
|
|
@if ($status == \App\Enums\ServerStatus::INSTALLATION_FAILED)
|
|
<x-status status="danger">{{ $status }}</x-status>
|
|
@endif
|