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