mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 10:51:36 +00:00
12 lines
354 B
PHP
12 lines
354 B
PHP
@if ($status == \App\Enums\DeploymentStatus::DEPLOYING)
|
|
<x-status status="warning">{{ $status }}</x-status>
|
|
@endif
|
|
|
|
@if ($status == \App\Enums\DeploymentStatus::FINISHED)
|
|
<x-status status="success">{{ $status }}</x-status>
|
|
@endif
|
|
|
|
@if ($status == \App\Enums\DeploymentStatus::FAILED)
|
|
<x-status status="danger">{{ $status }}</x-status>
|
|
@endif
|