mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-22 11:12:20 +00:00
16 lines
442 B
PHP
16 lines
442 B
PHP
@if ($status == \App\Enums\SslStatus::CREATED)
|
|
<x-status status="success">{{ $status }}</x-status>
|
|
@endif
|
|
|
|
@if ($status == \App\Enums\SslStatus::CREATING)
|
|
<x-status status="warning">{{ $status }}</x-status>
|
|
@endif
|
|
|
|
@if ($status == \App\Enums\SslStatus::DELETING)
|
|
<x-status status="danger">{{ $status }}</x-status>
|
|
@endif
|
|
|
|
@if ($status == \App\Enums\SslStatus::FAILED)
|
|
<x-status status="danger">{{ $status }}</x-status>
|
|
@endif
|