mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
12 lines
370 B
PHP
12 lines
370 B
PHP
@if ($status == \App\Enums\ScriptExecutionStatus::EXECUTING)
|
|
<x-status status="warning">{{ $status }}</x-status>
|
|
@endif
|
|
|
|
@if ($status == \App\Enums\ScriptExecutionStatus::COMPLETED)
|
|
<x-status status="success">{{ $status }}</x-status>
|
|
@endif
|
|
|
|
@if ($status == \App\Enums\ScriptExecutionStatus::FAILED)
|
|
<x-status status="danger">{{ $status }}</x-status>
|
|
@endif
|