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