database backups

This commit is contained in:
Saeed Vaziry
2023-08-25 21:05:18 +02:00
parent f9ac454a7c
commit ea3f011f34
55 changed files with 1111 additions and 172 deletions

View File

@ -0,0 +1,9 @@
@if($status == \App\Enums\BackupStatus::RUNNING)
<x-status status="success">{{ $status }}</x-status>
@endif
@if($status == \App\Enums\BackupStatus::DELETING)
<x-status status="danger">{{ $status }}</x-status>
@endif
@if($status == \App\Enums\BackupStatus::FAILED)
<x-status status="danger">{{ $status }}</x-status>
@endif